mirror of
https://github.com/discourse/discourse.git
synced 2024-11-24 15:49:55 +08:00
15 lines
385 B
JavaScript
15 lines
385 B
JavaScript
export default Ember.Controller.extend({
|
|
loading: false,
|
|
period: "yearly",
|
|
searchType: "all",
|
|
|
|
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") }
|
|
]
|
|
});
|