aboutsummaryrefslogtreecommitdiffhomepage
path: root/server/middlewares/validators
diff options
context:
space:
mode:
Diffstat (limited to 'server/middlewares/validators')
-rw-r--r--server/middlewares/validators/account.ts9
-rw-r--r--server/middlewares/validators/webfinger.ts2
2 files changed, 2 insertions, 9 deletions
diff --git a/server/middlewares/validators/account.ts b/server/middlewares/validators/account.ts
index 58eeed3cc..07ae76b63 100644
--- a/server/middlewares/validators/account.ts
+++ b/server/middlewares/validators/account.ts
@@ -1,13 +1,6 @@
1import * as express from 'express' 1import * as express from 'express'
2import { param } from 'express-validator/check' 2import { param } from 'express-validator/check'
3import { 3import { logger } from '../../helpers'
4 isUserDisplayNSFWValid,
5 isUserPasswordValid,
6 isUserRoleValid,
7 isUserUsernameValid,
8 isUserVideoQuotaValid,
9 logger
10} from '../../helpers'
11import { isAccountNameValid } from '../../helpers/custom-validators/accounts' 4import { isAccountNameValid } from '../../helpers/custom-validators/accounts'
12import { database as db } from '../../initializers/database' 5import { database as db } from '../../initializers/database'
13import { AccountInstance } from '../../models' 6import { AccountInstance } from '../../models'
diff --git a/server/middlewares/validators/webfinger.ts b/server/middlewares/validators/webfinger.ts
index 068e03ad7..3e61a6cc3 100644
--- a/server/middlewares/validators/webfinger.ts
+++ b/server/middlewares/validators/webfinger.ts
@@ -14,7 +14,7 @@ const webfingerValidator = [
14 checkErrors(req, res, () => { 14 checkErrors(req, res, () => {
15 // Remove 'acct:' from the beginning of the string 15 // Remove 'acct:' from the beginning of the string
16 const nameWithHost = req.query.resource.substr(5) 16 const nameWithHost = req.query.resource.substr(5)
17 const [ name, ] = nameWithHost.split('@') 17 const [ name ] = nameWithHost.split('@')
18 18
19 db.Account.loadLocalByName(name) 19 db.Account.loadLocalByName(name)
20 .then(account => { 20 .then(account => {