/frontend/grant endpoint (#992)

This commit is contained in:
Michael Quigley
2025-06-24 16:54:21 -04:00
parent 1ac77fa5b9
commit eafaf56f13
34 changed files with 3014 additions and 0 deletions

View File

@@ -341,6 +341,54 @@ paths:
500:
description: internal server error
/frontend/grant:
post:
tags:
- admin
security:
- key: []
operationId: addFrontendGrant
parameters:
- name: body
in: body
schema:
type: object
properties:
frontendToken:
type: string
email:
type: string
responses:
200:
description: ok
401:
description: unauthorized
500:
description: internal server error
delete:
tags:
- admin
security:
- key: []
operationId: deleteFrontendGrant
parameters:
- name: body
in: body
schema:
type: object
properties:
frontendToken:
type: string
email:
type: string
responses:
200:
description: ok
401:
description: unauthorized
500:
description: internal server error
/frontends:
get:
tags: