diff --git a/server/application-server/openapi.yaml b/server/application-server/openapi.yaml index 024380c5..c1b87769 100644 --- a/server/application-server/openapi.yaml +++ b/server/application-server/openapi.yaml @@ -319,6 +319,8 @@ components: format: int64 login: type: string + email: + type: string avatarUrl: type: string name: diff --git a/webapp/src/app/core/modules/openapi/model/user-info.ts b/webapp/src/app/core/modules/openapi/model/user-info.ts index ced80a51..1a5fb645 100644 --- a/webapp/src/app/core/modules/openapi/model/user-info.ts +++ b/webapp/src/app/core/modules/openapi/model/user-info.ts @@ -14,6 +14,7 @@ export interface UserInfo { id: number; login: string; + email?: string; avatarUrl: string; name: string; htmlUrl: string;