mirror of
https://github.com/discourse/discourse.git
synced 2024-11-25 03:03:00 +08:00
12 lines
441 B
JavaScript
12 lines
441 B
JavaScript
export default Ember.Controller.extend({
|
|
loading: false,
|
|
period: "all",
|
|
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')}
|
|
]
|
|
});
|