|
@ -43,7 +43,7 @@ export class UserService { |
|
|
include: { |
|
|
include: { |
|
|
User: true |
|
|
User: true |
|
|
}, |
|
|
}, |
|
|
orderBy: { User: { alias: 'asc' } }, |
|
|
orderBy: { alias: 'asc' }, |
|
|
where: { GranteeUser: { id } } |
|
|
where: { GranteeUser: { id } } |
|
|
}); |
|
|
}); |
|
|
let tags = await this.tagService.getByUser(id); |
|
|
let tags = await this.tagService.getByUser(id); |
|
@ -98,7 +98,6 @@ export class UserService { |
|
|
const { |
|
|
const { |
|
|
accessToken, |
|
|
accessToken, |
|
|
Account, |
|
|
Account, |
|
|
alias, |
|
|
|
|
|
authChallenge, |
|
|
authChallenge, |
|
|
createdAt, |
|
|
createdAt, |
|
|
id, |
|
|
id, |
|
@ -116,7 +115,6 @@ export class UserService { |
|
|
const user: UserWithSettings = { |
|
|
const user: UserWithSettings = { |
|
|
accessToken, |
|
|
accessToken, |
|
|
Account, |
|
|
Account, |
|
|
alias, |
|
|
|
|
|
authChallenge, |
|
|
authChallenge, |
|
|
createdAt, |
|
|
createdAt, |
|
|
id, |
|
|
id, |
|
|