mirror of
https://ghfast.top/https://github.com/discourse/discourse-ai.git
synced 2026-07-17 11:46:28 +08:00
9 lines
332 B
JavaScript
9 lines
332 B
JavaScript
import { computed } from "@ember/object";
|
|
import AdminDashboardTabController from "admin/controllers/admin-dashboard-tab";
|
|
|
|
export default class AdminDashboardSentiment extends AdminDashboardTabController {
|
|
@computed("startDate", "endDate")
|
|
get filters() {
|
|
return { startDate: this.startDate, endDate: this.endDate };
|
|
}
|
|
}
|