Skip to content

Commit

Permalink
fix: show github login on admin users - fix #284 (#290)
Browse files Browse the repository at this point in the history
  • Loading branch information
pagoru authored Jan 27, 2025
1 parent 62b6fb7 commit 73678c5
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions app/server/src/modules/api/v3/admin/users.request.ts
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,8 @@ export const usersGetRequest: RequestType = {
createdAt: account.createdAt,
verified: account.verified,
languages: account.languages,
githubLogin: (await System.db.get(["github", account.accountId]))
?.login,
})),
)
).sort((userA: any, userB: any) =>
Expand Down

0 comments on commit 73678c5

Please sign in to comment.