mirror of
https://ghfast.top/https://github.com/discourse/discourse-ai.git
synced 2026-07-16 11:36:23 +08:00
15 lines
287 B
JavaScript
15 lines
287 B
JavaScript
import RestModel from "discourse/models/rest";
|
|
|
|
export default class AiFeature extends RestModel {
|
|
createProperties() {
|
|
return this.getProperties(
|
|
"id",
|
|
"name",
|
|
"ref",
|
|
"description",
|
|
"enable_setting",
|
|
"agent",
|
|
"agent_setting"
|
|
);
|
|
}
|
|
}
|