user-job: make an endpoint for userJob + doc swagger

This commit is contained in:
nobohan
2022-01-19 10:34:33 +01:00
parent 3471bdec0d
commit 9f7f6e33e8
2 changed files with 41 additions and 2 deletions

View File

@@ -116,7 +116,15 @@ components:
type: number
minItems: 2
maxItems: 2
UserJob:
type: object
properties:
id:
type: integer
label:
type: object
type:
type: string
paths:
/1.0/search.json:
@@ -771,5 +779,16 @@ paths:
description: "accepted"
403:
description: "unauthorized"
/1.0/main/user-job.json:
get:
tags:
- user
summary: Return a list of all user jobs
responses:
200:
description: "ok"
content:
application/json:
schema:
$ref: '#/components/schemas/UserJob'