aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/src/app/shared/users/user.model.ts
diff options
context:
space:
mode:
authorChocobozzz <florian.bigard@gmail.com>2017-06-16 11:01:45 +0200
committerChocobozzz <florian.bigard@gmail.com>2017-06-16 11:01:45 +0200
commit46757b477c1adb5f98060d15998a3852e18902a6 (patch)
tree3dee14c84eaee450eb4f409bb170e08a58a03d59 /client/src/app/shared/users/user.model.ts
parentee9e7b61f59a427208386738057c8eff48fba599 (diff)
downloadPeerTube-46757b477c1adb5f98060d15998a3852e18902a6.tar.gz
PeerTube-46757b477c1adb5f98060d15998a3852e18902a6.tar.zst
PeerTube-46757b477c1adb5f98060d15998a3852e18902a6.zip
Fix client compilation
Diffstat (limited to 'client/src/app/shared/users/user.model.ts')
-rw-r--r--client/src/app/shared/users/user.model.ts6
1 files changed, 3 insertions, 3 deletions
diff --git a/client/src/app/shared/users/user.model.ts b/client/src/app/shared/users/user.model.ts
index 09722704a..d4695ab67 100644
--- a/client/src/app/shared/users/user.model.ts
+++ b/client/src/app/shared/users/user.model.ts
@@ -1,10 +1,10 @@
1import { User as UserServerModel } from '../../../../../shared'; 1import { User as UserServerModel, UserRole } from '../../../../../shared';
2 2
3export class User implements UserServerModel { 3export class User implements UserServerModel {
4 id: number; 4 id: number;
5 username: string; 5 username: string;
6 email: string; 6 email: string;
7 role: string; 7 role: UserRole;
8 displayNSFW: boolean; 8 displayNSFW: boolean;
9 createdAt: Date; 9 createdAt: Date;
10 10
@@ -12,7 +12,7 @@ export class User implements UserServerModel {
12 id: number, 12 id: number,
13 username: string, 13 username: string,
14 email: string, 14 email: string,
15 role: string, 15 role: UserRole,
16 displayNSFW?: boolean, 16 displayNSFW?: boolean,
17 createdAt?: Date, 17 createdAt?: Date,
18 }) { 18 }) {