mirror of
https://ghfast.top/https://github.com/discourse/discourse-ai.git
synced 2026-07-16 11:36:23 +08:00
* FEATURE: Display features that rely on multiple personas. This change makes the previously hidden feature page visible while displaying features, like the AI helper, which relies on multiple personas. * Fix system specs
7 lines
205 B
JavaScript
7 lines
205 B
JavaScript
import RestModel from "discourse/models/rest";
|
|
|
|
export default class AiFeature extends RestModel {
|
|
createProperties() {
|
|
return this.getProperties("id", "module", "global_enabled", "features");
|
|
}
|
|
}
|