aboutsummaryrefslogtreecommitdiffhomepage
path: root/server/typings/models
diff options
context:
space:
mode:
authorChocobozzz <me@florianbigard.com>2019-08-21 08:57:00 +0200
committerChocobozzz <me@florianbigard.com>2019-08-21 08:57:00 +0200
commitf92e7f76d43cbad173be87f47105b9a02032318a (patch)
tree2b18ff4d3cd863ff0f91adf7ca80fd7a2f5b3d05 /server/typings/models
parent1ca9f7c3f7afac2af4c4c25b98426731f7e789c6 (diff)
downloadPeerTube-f92e7f76d43cbad173be87f47105b9a02032318a.tar.gz
PeerTube-f92e7f76d43cbad173be87f47105b9a02032318a.tar.zst
PeerTube-f92e7f76d43cbad173be87f47105b9a02032318a.zip
Fix ownership change
Diffstat (limited to 'server/typings/models')
-rw-r--r--server/typings/models/account/account.ts7
1 files changed, 3 insertions, 4 deletions
diff --git a/server/typings/models/account/account.ts b/server/typings/models/account/account.ts
index 33940517e..cd20fe81b 100644
--- a/server/typings/models/account/account.ts
+++ b/server/typings/models/account/account.ts
@@ -1,17 +1,16 @@
1import { AccountModel } from '../../../models/account/account' 1import { AccountModel } from '../../../models/account/account'
2import { 2import {
3 MActor, 3 MActor,
4 MActorAccountChannelId,
5 MActorAPI, 4 MActorAPI,
6 MActorAudience, 5 MActorAudience,
7 MActorDefault, 6 MActorDefault,
8 MActorDefaultLight, 7 MActorDefaultLight,
8 MActorFormattable,
9 MActorId, 9 MActorId,
10 MActorServer, 10 MActorServer,
11 MActorSummary, 11 MActorSummary,
12 MActorSummaryFormattable, 12 MActorSummaryFormattable,
13 MActorUrl, 13 MActorUrl
14 MActorFormattable
15} from './actor' 14} from './actor'
16import { FunctionProperties, PickWith } from '../../utils' 15import { FunctionProperties, PickWith } from '../../utils'
17import { MAccountBlocklistId } from './account-blocklist' 16import { MAccountBlocklistId } from './account-blocklist'
@@ -35,7 +34,7 @@ export type MAccountUrl = Use<'Actor', MActorUrl>
35export type MAccountAudience = Use<'Actor', MActorAudience> 34export type MAccountAudience = Use<'Actor', MActorAudience>
36 35
37export type MAccountIdActor = MAccountId & 36export type MAccountIdActor = MAccountId &
38 Use<'Actor', MActorAccountChannelId> 37 Use<'Actor', MActor>
39 38
40export type MAccountIdActorId = MAccountId & 39export type MAccountIdActorId = MAccountId &
41 Use<'Actor', MActorId> 40 Use<'Actor', MActorId>