mirror of
https://github.com/discourse/discourse.git
synced 2025-06-04 11:11:13 +08:00
FEATURE: search log term details page (#5445)
This commit is contained in:
@ -0,0 +1,11 @@
|
||||
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')}
|
||||
]
|
||||
});
|
Reference in New Issue
Block a user