]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blobdiff - server/middlewares/validators/webfinger.ts
Correctly close RTMPS server too
[github/Chocobozzz/PeerTube.git] / server / middlewares / validators / webfinger.ts
index 097a5ece1b75b5017ed4096da8d308c241f1e482..8893a0c7e89d7ec1b68a464c1ba3cacfe8d0001d 100644 (file)
@@ -1,11 +1,11 @@
-import * as express from 'express'
+import express from 'express'
 import { query } from 'express-validator'
-import { HttpStatusCode } from '../../../shared/core-utils/miscs/http-error-codes'
+import { HttpStatusCode } from '../../../shared/models/http/http-error-codes'
 import { isWebfingerLocalResourceValid } from '../../helpers/custom-validators/webfinger'
 import { getHostWithPort } from '../../helpers/express-utils'
 import { logger } from '../../helpers/logger'
 import { ActorModel } from '../../models/actor/actor'
-import { areValidationErrors } from './utils'
+import { areValidationErrors } from './shared'
 
 const webfingerValidator = [
   query('resource').custom(isWebfingerLocalResourceValid).withMessage('Should have a valid webfinger resource'),