Ajout des Désinscriptions Réinscriptions et Demande de Bourses ainsi que des demandes de dispenses

Plus que les endpoints a faire :)
This commit is contained in:
LeoMoulin 2023-12-09 12:17:31 +01:00
parent 8100978e35
commit 662da80039

View File

@ -400,6 +400,26 @@ paths:
schema: schema:
type: integer type: integer
patch:
summary: Change the state of a register request
tags:
- RegisterRequests
security:
- bearer: []
requestBody:
required: true
content:
application/x-www-form-urlencoded:
schema:
type: object
properties:
State:
type: string
responses:
'201':
description: State modified
'401':
$ref: '#/components/responses/UnauthorizedError'
/RegRequest: /RegRequest:
post : post :
@ -564,6 +584,56 @@ components:
State : State :
type : string type : string
ReRegRequest:
type : object
properties :
id :
type : integer
RegNo :
type : integer
NewCursusid :
type : integer
State :
type : string
SSRequests:
type : object
properties :
id :
type : integer
RegNo :
type : integer
Amount :
type : integer
Document :
type : string
description : justification document for a scholarship
UnRegRequest :
type : object
properties :
id :
type : integer
RegNo :
type : integer
State :
type : string
ExempRequest :
type : object
properties :
id:
type : integer
RegNo :
type : integer
Courseid :
type : integer
State :
type : string
responses: responses:
UnauthorizedError: UnauthorizedError:
description: Permission non accordée description: Permission non accordée