Files

16 lines
291 B
JavaScript
Raw Permalink Normal View History

import RestModel from "discourse/models/rest";
export default class AiFeature extends RestModel {
createProperties() {
return this.getProperties(
"id",
"name",
"ref",
"description",
"enable_setting",
"persona",
"persona_setting"
);
}
}