File tree Expand file tree Collapse file tree 2 files changed +86
-0
lines changed
Expand file tree Collapse file tree 2 files changed +86
-0
lines changed Original file line number Diff line number Diff line change @@ -471,6 +471,20 @@ paths:
471471 tags :
472472 - authentication
473473 description : Verifies a login attempt for a user
474+ /auth/user/avatarmoderations :
475+ get :
476+ summary : Get Global Avatar Moderations
477+ operationId : getGlobalAvatarModerations
478+ description : Returns list of globally blocked avatars.
479+ tags :
480+ - authentication
481+ security :
482+ - authCookie : []
483+ responses :
484+ ' 200 ' :
485+ $ref : ' #/components/responses/GetAvatarModerationsResponse'
486+ ' 401 ' :
487+ $ref : ' #/components/responses/MissingCredentialsError'
474488 /users/{userId}/avatar :
475489 get :
476490 summary : Get Own Avatar
@@ -5195,6 +5209,27 @@ components:
51955209 - captchaCode
51965210 - subscribe
51975211 - acceptedTOSVersion
5212+ AvatarModerationType :
5213+ title : AvatarModerationType
5214+ type : string
5215+ enum :
5216+ - block
5217+ example : block
5218+ AvatarModeration :
5219+ title : AvatarModeration
5220+ type : object
5221+ properties :
5222+ avatarModerationType :
5223+ $ref : ' #/components/schemas/AvatarModerationType'
5224+ created :
5225+ type : string
5226+ format : date-time
5227+ targetAvatarId :
5228+ $ref : ' #/components/schemas/AvatarID'
5229+ required :
5230+ - avatarModerationType
5231+ - created
5232+ - targetAvatarId
51985233 ReleaseStatus :
51995234 type : string
52005235 default : public
@@ -12312,6 +12347,14 @@ components:
1231212347 description : OK
1231312348 VerifyLoginPlaceResponse :
1231412349 description : OK
12350+ GetAvatarModerationsResponse :
12351+ description : Returns list of globally blocked avatars with timestamps
12352+ content :
12353+ application/json :
12354+ schema :
12355+ type : array
12356+ items :
12357+ $ref : ' #/components/schemas/AvatarModeration'
1231512358 AvatarResponse :
1231612359 description : Returns a single Avatar object.
1231712360 content :
Original file line number Diff line number Diff line change @@ -471,6 +471,20 @@ paths:
471471 tags :
472472 - authentication
473473 description : Verifies a login attempt for a user
474+ /auth/user/avatarmoderations :
475+ get :
476+ summary : Get Global Avatar Moderations
477+ operationId : getGlobalAvatarModerations
478+ description : Returns list of globally blocked avatars.
479+ tags :
480+ - authentication
481+ security :
482+ - authCookie : []
483+ responses :
484+ ' 200 ' :
485+ $ref : ' #/components/responses/GetAvatarModerationsResponse'
486+ ' 401 ' :
487+ $ref : ' #/components/responses/MissingCredentialsError'
474488 /users/{userId}/avatar :
475489 get :
476490 summary : Get Own Avatar
@@ -5195,6 +5209,27 @@ components:
51955209 - captchaCode
51965210 - subscribe
51975211 - acceptedTOSVersion
5212+ AvatarModerationType :
5213+ title : AvatarModerationType
5214+ type : string
5215+ enum :
5216+ - block
5217+ example : block
5218+ AvatarModeration :
5219+ title : AvatarModeration
5220+ type : object
5221+ properties :
5222+ avatarModerationType :
5223+ $ref : ' #/components/schemas/AvatarModerationType'
5224+ created :
5225+ type : string
5226+ format : date-time
5227+ targetAvatarId :
5228+ $ref : ' #/components/schemas/AvatarID'
5229+ required :
5230+ - avatarModerationType
5231+ - created
5232+ - targetAvatarId
51985233 ReleaseStatus :
51995234 type : string
52005235 default : public
@@ -12312,6 +12347,14 @@ components:
1231212347 description : OK
1231312348 VerifyLoginPlaceResponse :
1231412349 description : OK
12350+ GetAvatarModerationsResponse :
12351+ description : Returns list of globally blocked avatars with timestamps
12352+ content :
12353+ application/json :
12354+ schema :
12355+ type : array
12356+ items :
12357+ $ref : ' #/components/schemas/AvatarModeration'
1231512358 AvatarResponse :
1231612359 description : Returns a single Avatar object.
1231712360 content :
You can’t perform that action at this time.
0 commit comments