diff options
author | Chocobozzz <me@florianbigard.com> | 2018-10-05 16:56:14 +0200 |
---|---|---|
committer | Chocobozzz <me@florianbigard.com> | 2018-10-05 17:02:10 +0200 |
commit | 79bd2632d62f2f600d663815fcc00a01ca981aa1 (patch) | |
tree | 2a6b5df65fdd6025dda16cf7cd743c4530c63bf6 /shared/models/actors | |
parent | e724fa93c71d76d709e819a05e5e2904a3c4205b (diff) | |
download | PeerTube-79bd2632d62f2f600d663815fcc00a01ca981aa1.tar.gz PeerTube-79bd2632d62f2f600d663815fcc00a01ca981aa1.tar.zst PeerTube-79bd2632d62f2f600d663815fcc00a01ca981aa1.zip |
Add user moderation in the account page
Diffstat (limited to 'shared/models/actors')
-rw-r--r-- | shared/models/actors/account.model.ts | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/shared/models/actors/account.model.ts b/shared/models/actors/account.model.ts index e1117486d..7f1dbbc37 100644 --- a/shared/models/actors/account.model.ts +++ b/shared/models/actors/account.model.ts | |||
@@ -3,4 +3,6 @@ import { Actor } from './actor.model' | |||
3 | export interface Account extends Actor { | 3 | export interface Account extends Actor { |
4 | displayName: string | 4 | displayName: string |
5 | description: string | 5 | description: string |
6 | |||
7 | userId?: number | ||
6 | } | 8 | } |