mirror of
https://github.com/discourse/discourse-chat-integration.git
synced 2025-02-07 12:08:17 +00:00
12 lines
237 B
JavaScript
12 lines
237 B
JavaScript
import RestModel from "discourse/models/rest";
|
|
|
|
export default RestModel.extend({
|
|
updateProperties() {
|
|
return this.getProperties(["data"]);
|
|
},
|
|
|
|
createProperties() {
|
|
return this.getProperties(["provider", "data"]);
|
|
},
|
|
});
|