1
0
mirror of https://gitlab.com/comunic/comunicapiv2 synced 2025-06-20 00:25:17 +00:00

Get advanced user info

This commit is contained in:
2020-03-25 18:24:46 +01:00
parent cd0e76d017
commit 4004d5fd77
4 changed files with 13 additions and 3 deletions

View File

@ -383,7 +383,8 @@ export class AccountHelper {
*/
public static async Export(userID: number) : Promise<AccountExport> {
const data = new AccountExport({
userID: userID
userID: userID,
userInfo: await UserHelper.GetUserInfo(userID)
})