diff options
author | crupest <crupest@outlook.com> | 2020-08-08 18:12:30 +0800 |
---|---|---|
committer | crupest <crupest@outlook.com> | 2020-08-08 18:12:30 +0800 |
commit | 8391bf99dade3d72d410d8a7382a5319eb364f68 (patch) | |
tree | b2351cc00b543b302121444a7f595d4432369ee6 /Timeline/ClientApp/src/app/http/user.ts | |
parent | 85f3255f943a0420c9d6a2a519a3eb64669b00f4 (diff) | |
download | timeline-8391bf99dade3d72d410d8a7382a5319eb364f68.tar.gz timeline-8391bf99dade3d72d410d8a7382a5319eb364f68.tar.bz2 timeline-8391bf99dade3d72d410d8a7382a5319eb364f68.zip |
[front] Add unique if to user in http and implement mock server.
Diffstat (limited to 'Timeline/ClientApp/src/app/http/user.ts')
-rw-r--r-- | Timeline/ClientApp/src/app/http/user.ts | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Timeline/ClientApp/src/app/http/user.ts b/Timeline/ClientApp/src/app/http/user.ts index 345a5e8b..8d5e8a0b 100644 --- a/Timeline/ClientApp/src/app/http/user.ts +++ b/Timeline/ClientApp/src/app/http/user.ts @@ -12,6 +12,7 @@ import { } from './common';
export interface HttpUser {
+ uniqueId: string;
username: string;
administrator: boolean;
nickname: string;
|