mirror of
https://github.com/umami-software/umami.git
synced 2026-02-06 13:47:15 +01:00
Refactored settings. Updated sidebar.
This commit is contained in:
parent
d130242a0a
commit
3c5c1e48e9
26 changed files with 144 additions and 129 deletions
|
|
@ -12,6 +12,7 @@ export interface SaveEventArgs {
|
|||
sessionId: string;
|
||||
visitId: string;
|
||||
createdAt?: Date;
|
||||
eventType?: number;
|
||||
|
||||
// Page
|
||||
pageTitle?: string;
|
||||
|
|
@ -66,6 +67,7 @@ async function relationalQuery({
|
|||
sessionId,
|
||||
visitId,
|
||||
createdAt,
|
||||
eventType,
|
||||
pageTitle,
|
||||
tag,
|
||||
hostname,
|
||||
|
|
@ -113,7 +115,7 @@ async function relationalQuery({
|
|||
ttclid,
|
||||
lifatid,
|
||||
twclid,
|
||||
eventType: eventName ? EVENT_TYPE.customEvent : EVENT_TYPE.pageView,
|
||||
eventType: eventType || (eventName ? EVENT_TYPE.customEvent : EVENT_TYPE.pageView),
|
||||
eventName: eventName ? eventName?.substring(0, EVENT_NAME_LENGTH) : null,
|
||||
tag,
|
||||
hostname,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue