2024-01-19 07:27:33 -05:00
|
|
|
import { computed } from "@ember/object";
|
|
|
|
import AdminDashboardTabController from "admin/controllers/admin-dashboard-tab";
|
2023-11-08 08:50:37 -05:00
|
|
|
|
2024-01-19 07:27:33 -05:00
|
|
|
export default class AdminDashboardSentiment extends AdminDashboardTabController {
|
|
|
|
@computed("startDate", "endDate")
|
|
|
|
get filters() {
|
|
|
|
return { startDate: this.startDate, endDate: this.endDate };
|
2023-11-08 08:50:37 -05:00
|
|
|
}
|
|
|
|
}
|