diff options
author | Chocobozzz <me@florianbigard.com> | 2019-08-21 08:57:00 +0200 |
---|---|---|
committer | Chocobozzz <me@florianbigard.com> | 2019-08-21 08:57:00 +0200 |
commit | f92e7f76d43cbad173be87f47105b9a02032318a (patch) | |
tree | 2b18ff4d3cd863ff0f91adf7ca80fd7a2f5b3d05 /server/typings/models/account | |
parent | 1ca9f7c3f7afac2af4c4c25b98426731f7e789c6 (diff) | |
download | PeerTube-f92e7f76d43cbad173be87f47105b9a02032318a.tar.gz PeerTube-f92e7f76d43cbad173be87f47105b9a02032318a.tar.zst PeerTube-f92e7f76d43cbad173be87f47105b9a02032318a.zip |
Fix ownership change
Diffstat (limited to 'server/typings/models/account')
-rw-r--r-- | server/typings/models/account/account.ts | 7 |
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 @@ | |||
1 | import { AccountModel } from '../../../models/account/account' | 1 | import { AccountModel } from '../../../models/account/account' |
2 | import { | 2 | import { |
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' |
16 | import { FunctionProperties, PickWith } from '../../utils' | 15 | import { FunctionProperties, PickWith } from '../../utils' |
17 | import { MAccountBlocklistId } from './account-blocklist' | 16 | import { MAccountBlocklistId } from './account-blocklist' |
@@ -35,7 +34,7 @@ export type MAccountUrl = Use<'Actor', MActorUrl> | |||
35 | export type MAccountAudience = Use<'Actor', MActorAudience> | 34 | export type MAccountAudience = Use<'Actor', MActorAudience> |
36 | 35 | ||
37 | export type MAccountIdActor = MAccountId & | 36 | export type MAccountIdActor = MAccountId & |
38 | Use<'Actor', MActorAccountChannelId> | 37 | Use<'Actor', MActor> |
39 | 38 | ||
40 | export type MAccountIdActorId = MAccountId & | 39 | export type MAccountIdActorId = MAccountId & |
41 | Use<'Actor', MActorId> | 40 | Use<'Actor', MActorId> |