diff options
author | Chocobozzz <florian.bigard@gmail.com> | 2017-11-17 15:52:26 +0100 |
---|---|---|
committer | Chocobozzz <florian.bigard@gmail.com> | 2017-11-27 19:40:52 +0100 |
commit | 79d5caf994edd87ad721994490f10677be277497 (patch) | |
tree | 0db45893d8b78e34ce3d59849d0a331977a63d4b /server/models/account/account.ts | |
parent | 572f8d3dba44ba874f5c51023214273e3f5b643c (diff) | |
download | PeerTube-79d5caf994edd87ad721994490f10677be277497.tar.gz PeerTube-79d5caf994edd87ad721994490f10677be277497.tar.zst PeerTube-79d5caf994edd87ad721994490f10677be277497.zip |
Fix lint
Diffstat (limited to 'server/models/account/account.ts')
-rw-r--r-- | server/models/account/account.ts | 27 |
1 files changed, 11 insertions, 16 deletions
diff --git a/server/models/account/account.ts b/server/models/account/account.ts index c370e1709..faf5fa841 100644 --- a/server/models/account/account.ts +++ b/server/models/account/account.ts | |||
@@ -1,29 +1,24 @@ | |||
1 | import * as Sequelize from 'sequelize' | 1 | import * as Sequelize from 'sequelize' |
2 | 2 | ||
3 | import { | 3 | import { |
4 | isUserUsernameValid, | 4 | activityPubContextify, |
5 | isAccountPublicKeyValid, | ||
6 | isAccountUrlValid, | ||
7 | isAccountPrivateKeyValid, | ||
8 | isAccountFollowersCountValid, | 5 | isAccountFollowersCountValid, |
6 | isAccountFollowersValid, | ||
9 | isAccountFollowingCountValid, | 7 | isAccountFollowingCountValid, |
8 | isAccountFollowingValid, | ||
10 | isAccountInboxValid, | 9 | isAccountInboxValid, |
11 | isAccountOutboxValid, | 10 | isAccountOutboxValid, |
11 | isAccountPrivateKeyValid, | ||
12 | isAccountPublicKeyValid, | ||
12 | isAccountSharedInboxValid, | 13 | isAccountSharedInboxValid, |
13 | isAccountFollowersValid, | 14 | isAccountUrlValid, |
14 | isAccountFollowingValid, | 15 | isUserUsernameValid |
15 | activityPubContextify | ||
16 | } from '../../helpers' | 16 | } from '../../helpers' |
17 | |||
18 | import { addMethodsToModel, getSort } from '../utils' | ||
19 | import { | ||
20 | AccountInstance, | ||
21 | AccountAttributes, | ||
22 | |||
23 | AccountMethods | ||
24 | } from './account-interface' | ||
25 | import { sendDeleteAccount } from '../../lib/activitypub/send-request' | ||
26 | import { CONFIG, CONSTRAINTS_FIELDS } from '../../initializers/constants' | 17 | import { CONFIG, CONSTRAINTS_FIELDS } from '../../initializers/constants' |
18 | import { sendDeleteAccount } from '../../lib/activitypub/send-request' | ||
19 | |||
20 | import { addMethodsToModel } from '../utils' | ||
21 | import { AccountAttributes, AccountInstance, AccountMethods } from './account-interface' | ||
27 | 22 | ||
28 | let Account: Sequelize.Model<AccountInstance, AccountAttributes> | 23 | let Account: Sequelize.Model<AccountInstance, AccountAttributes> |
29 | let loadAccountByServerAndUUID: AccountMethods.LoadAccountByServerAndUUID | 24 | let loadAccountByServerAndUUID: AccountMethods.LoadAccountByServerAndUUID |