mirror of
https://github.com/umami-software/umami.git
synced 2026-02-10 07:37:11 +01:00
add tags table and filters logic
This commit is contained in:
parent
bffb98cd51
commit
8759ba9916
15 changed files with 108 additions and 30 deletions
|
|
@ -33,7 +33,7 @@ export const FILTER_REFERRERS = 'filter-referrers';
|
|||
export const FILTER_PAGES = 'filter-pages';
|
||||
|
||||
export const UNIT_TYPES = ['year', 'month', 'hour', 'day', 'minute'];
|
||||
export const EVENT_COLUMNS = ['url', 'entry', 'exit', 'referrer', 'title', 'query', 'event'];
|
||||
export const EVENT_COLUMNS = ['url', 'entry', 'exit', 'referrer', 'title', 'query', 'event', 'tag'];
|
||||
|
||||
export const SESSION_COLUMNS = [
|
||||
'browser',
|
||||
|
|
@ -63,6 +63,7 @@ export const FILTER_COLUMNS = {
|
|||
city: 'city',
|
||||
language: 'language',
|
||||
event: 'event_name',
|
||||
tag: 'tag',
|
||||
};
|
||||
|
||||
export const COLLECTION_TYPE = {
|
||||
|
|
|
|||
|
|
@ -179,6 +179,7 @@ export interface QueryFilters {
|
|||
language?: string;
|
||||
event?: string;
|
||||
search?: string;
|
||||
tag?: string;
|
||||
}
|
||||
|
||||
export interface QueryOptions {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue