mirror of
https://github.com/discourse/discourse.git
synced 2025-06-06 02:54:41 +08:00
FEATURE: search log term details page (#5445)
This commit is contained in:
@ -0,0 +1,13 @@
|
||||
export default Ember.Controller.extend({
|
||||
loading: false,
|
||||
term: null,
|
||||
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')},
|
||||
{id: 'click_through_only', name: I18n.t('admin.logs.search_logs.types.click_through_only')}
|
||||
]
|
||||
});
|
Reference in New Issue
Block a user