FEATURE: search log term details page (#5445)

This commit is contained in:
Arpit Jalan
2017-12-20 08:11:31 +05:30
committed by Sam
parent bbc606988f
commit eab66065d1
17 changed files with 172 additions and 9 deletions

View File

@ -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')}
]
});