diff options
author | Rigel Kent <sendmemail@rigelk.eu> | 2021-06-04 09:16:23 +0200 |
---|---|---|
committer | Rigel Kent <sendmemail@rigelk.eu> | 2021-06-04 09:21:46 +0200 |
commit | 1333ab1f2d4ec495084c5368df25610683582ae3 (patch) | |
tree | 4d2b6f5b36d2acfacd5e5f6c3a9d35a9c7101658 /server/controllers/api/abuse.ts | |
parent | 1c627fd8d2e60d4d790353886006485343d70084 (diff) | |
download | PeerTube-1333ab1f2d4ec495084c5368df25610683582ae3.tar.gz PeerTube-1333ab1f2d4ec495084c5368df25610683582ae3.tar.zst PeerTube-1333ab1f2d4ec495084c5368df25610683582ae3.zip |
add operationId doc middleware to so API endpoints
Diffstat (limited to 'server/controllers/api/abuse.ts')
-rw-r--r-- | server/controllers/api/abuse.ts | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/server/controllers/api/abuse.ts b/server/controllers/api/abuse.ts index 108627f81..ba5b94840 100644 --- a/server/controllers/api/abuse.ts +++ b/server/controllers/api/abuse.ts | |||
@@ -24,6 +24,7 @@ import { | |||
24 | deleteAbuseMessageValidator, | 24 | deleteAbuseMessageValidator, |
25 | ensureUserHasRight, | 25 | ensureUserHasRight, |
26 | getAbuseValidator, | 26 | getAbuseValidator, |
27 | openapiOperationDoc, | ||
27 | paginationValidator, | 28 | paginationValidator, |
28 | setDefaultPagination, | 29 | setDefaultPagination, |
29 | setDefaultSort | 30 | setDefaultSort |
@@ -33,6 +34,7 @@ import { AccountModel } from '../../models/account/account' | |||
33 | const abuseRouter = express.Router() | 34 | const abuseRouter = express.Router() |
34 | 35 | ||
35 | abuseRouter.get('/', | 36 | abuseRouter.get('/', |
37 | openapiOperationDoc({ operationId: 'getAbuses' }), | ||
36 | authenticate, | 38 | authenticate, |
37 | ensureUserHasRight(UserRight.MANAGE_ABUSES), | 39 | ensureUserHasRight(UserRight.MANAGE_ABUSES), |
38 | paginationValidator, | 40 | paginationValidator, |