mirror of
https://github.com/umami-software/umami.git
synced 2026-02-10 15:47:13 +01:00
Merge remote-tracking branch 'origin/dev' into dev
This commit is contained in:
commit
1b4c5c80d3
91 changed files with 1454 additions and 373 deletions
|
|
@ -30,6 +30,22 @@ export const FILTER_RANGE = 'filter-range';
|
|||
export const FILTER_REFERRERS = 'filter-referrers';
|
||||
export const FILTER_PAGES = 'filter-pages';
|
||||
|
||||
export const USER_FILTER_TYPES = {
|
||||
all: 'All',
|
||||
username: 'Username',
|
||||
} as const;
|
||||
export const WEBSITE_FILTER_TYPES = { all: 'All', name: 'Name', domain: 'Domain' } as const;
|
||||
export const TEAM_FILTER_TYPES = { all: 'All', name: 'Name', 'user:username': 'Owner' } as const;
|
||||
export const REPORT_FILTER_TYPES = {
|
||||
all: 'All',
|
||||
name: 'Name',
|
||||
description: 'Description',
|
||||
type: 'Type',
|
||||
'user:username': 'Username',
|
||||
'website:name': 'Website Name',
|
||||
'website:domain': 'Website Domain',
|
||||
} as const;
|
||||
|
||||
export const EVENT_COLUMNS = ['url', 'referrer', 'title', 'query', 'event'];
|
||||
|
||||
export const SESSION_COLUMNS = [
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue