Skip to content

Commit

Permalink
feat: пресеты изменены на json query, добавлен https фильтр
Browse files Browse the repository at this point in the history
  • Loading branch information
popstas committed Sep 22, 2018
1 parent 3dad10b commit 0abf6cd
Showing 1 changed file with 12 additions and 4 deletions.
16 changes: 12 additions & 4 deletions pages/index.vue
Original file line number Diff line number Diff line change
Expand Up @@ -203,24 +203,32 @@ export default {
'yandex_tcy',
'h1_count'
]
},
https: {
name: 'https',
columns: ['domain_idn', 'https', 'email']
}
},
filterPresets: [
{
name: 'bitrix',
q: 'engine:bitrix prod:1'
q: 'engine=bitrix&prod=1'
},
{
name: 'without cron',
q: 'engine:drupal prod:1 cron:0'
q: 'engine=drupal&prod=1&cron=0'
},
{
name: 'without git',
q: 'prod:1 git:0'
q: 'prod=1&git=0'
},
{
name: 'h1 > 1',
q: 'h1_count>1'
q: 'h1_count>1&prod=1'
},
{
name: 'without https',
q: 'https=0&prod=1'
}
],
routerProcess: false
Expand Down

0 comments on commit 0abf6cd

Please sign in to comment.