mirror of
https://github.com/discourse/discourse.git
synced 2024-11-25 07:08:44 +08:00
26 lines
591 B
JavaScript
26 lines
591 B
JavaScript
import Controller from "@ember/controller";
|
|
import I18n from "I18n";
|
|
export const DEFAULT_PERIOD = "yearly";
|
|
|
|
export default Controller.extend({
|
|
loading: false,
|
|
period: DEFAULT_PERIOD,
|
|
searchType: "all",
|
|
|
|
init() {
|
|
this._super(...arguments);
|
|
|
|
this.searchTypeOptions = [
|
|
{
|
|
id: "all",
|
|
name: I18n.t("admin.logs.search_logs.types.all_search_types"),
|
|
},
|
|
{ id: "header", name: I18n.t("admin.logs.search_logs.types.header") },
|
|
{
|
|
id: "full_page",
|
|
name: I18n.t("admin.logs.search_logs.types.full_page"),
|
|
},
|
|
];
|
|
},
|
|
});
|