mirror of
https://github.com/BradNut/umami
synced 2025-09-08 17:40:29 +00:00
Merge branch 'dev' of https://github.com/umami-software/umami into dev
This commit is contained in:
commit
8fc755df99
1 changed files with 2 additions and 2 deletions
|
|
@ -43,7 +43,7 @@ export default async (
|
|||
return unauthorized(res);
|
||||
}
|
||||
|
||||
const { userId, includeOwnedTeams } = req.query;
|
||||
const { userId, includeTeams } = req.query;
|
||||
|
||||
const websites = await getWebsites(
|
||||
{
|
||||
|
|
@ -51,7 +51,7 @@ export default async (
|
|||
OR: [
|
||||
...(userId && [{ userId }]),
|
||||
...(userId &&
|
||||
includeOwnedTeams && [
|
||||
includeTeams && [
|
||||
{
|
||||
team: {
|
||||
deletedAt: null,
|
||||
|
|
|
|||
Loading…
Reference in a new issue