mirror of
https://github.com/umami-software/umami.git
synced 2026-02-19 03:55:37 +01:00
add pagetitle to queries
This commit is contained in:
parent
6c302a7325
commit
93650a2f66
9 changed files with 36 additions and 7 deletions
|
|
@ -17,6 +17,7 @@ export interface WebsitePageviewRequestQuery {
|
|||
timezone: string;
|
||||
url?: string;
|
||||
referrer?: string;
|
||||
pageTitle?: string;
|
||||
os?: string;
|
||||
browser?: string;
|
||||
device?: string;
|
||||
|
|
@ -41,6 +42,7 @@ export default async (
|
|||
timezone,
|
||||
url,
|
||||
referrer,
|
||||
pageTitle,
|
||||
os,
|
||||
browser,
|
||||
device,
|
||||
|
|
@ -72,6 +74,7 @@ export default async (
|
|||
filters: {
|
||||
url,
|
||||
referrer,
|
||||
pageTitle,
|
||||
os,
|
||||
browser,
|
||||
device,
|
||||
|
|
@ -89,6 +92,7 @@ export default async (
|
|||
count: 'distinct website_event.',
|
||||
filters: {
|
||||
url,
|
||||
pageTitle,
|
||||
os,
|
||||
browser,
|
||||
device,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue