fix(seerr-api.yml): add additional return types to API schema

This commit is contained in:
Michael Thomas
2026-03-26 11:13:47 -04:00
parent b9f7236e24
commit 0cc6139818

View File

@@ -4080,6 +4080,24 @@ paths:
type: string
'403':
description: OpenID Connect sign-in is disabled or provider not found
content:
application/json:
schema:
type: object
properties:
error:
type: string
example: 'UNAUTHORIZED'
'500':
description: An error occurred while creating the authorization redirect
content:
application/json:
schema:
type: object
properties:
error:
type: string
example: 'OIDC_AUTHORIZATION_FAILED'
/auth/oidc/callback/{slug}:
post:
summary: Handle OpenID Connect callback
@@ -5329,6 +5347,8 @@ paths:
responses:
'204':
description: Unlinking account succeeded
'403':
description: Insufficient permissions
'404':
description: User or linked account does not exist
/user/{userId}/settings/notifications: