File size: 720 Bytes
1e92f2d | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 | import { JETPACK_BOOST_ID } from 'calypso/a8c-for-agencies/sections/sites/features/features';
import { AgencyDashboardFilterMap } from './types';
export const A4A_SITES_DASHBOARD_DEFAULT_CATEGORY = 'overview';
export const A4A_SITES_DASHBOARD_DEFAULT_FEATURE = JETPACK_BOOST_ID;
export const DEFAULT_SORT_FIELD = 'url';
export const DEFAULT_SORT_DIRECTION = 'asc';
export const filtersMap: AgencyDashboardFilterMap[] = [
{ filterType: 'all_issues', ref: 1 },
{ filterType: 'backup_failed', ref: 2 },
{ filterType: 'backup_warning', ref: 3 },
{ filterType: 'threats_found', ref: 4 },
{ filterType: 'site_disconnected', ref: 5 },
{ filterType: 'site_down', ref: 6 },
{ filterType: 'plugin_updates', ref: 7 },
];
|