Skip to content

Commit

Permalink
deploy: e4ea38f
Browse files Browse the repository at this point in the history
  • Loading branch information
mako321 committed Oct 31, 2023
1 parent 18d7e60 commit b5e8e52
Showing 1 changed file with 110 additions and 8 deletions.
118 changes: 110 additions & 8 deletions api-docs.json
Original file line number Diff line number Diff line change
Expand Up @@ -5555,11 +5555,13 @@
"schema": {
"type": "string",
"enum": [
"finished_at",
"started_at",
"created_at",
"id",
"name",
"only_with_categories"
"status",
"duration",
"active_from",
"active_to",
"created_at"
]
}
},
Expand Down Expand Up @@ -5835,11 +5837,13 @@
"schema": {
"type": "string",
"enum": [
"finished_at",
"started_at",
"created_at",
"id",
"name",
"only_with_categories"
"status",
"duration",
"active_from",
"active_to",
"created_at"
]
}
},
Expand Down Expand Up @@ -13342,6 +13346,104 @@
}
}
},
"/api/admin/recommender/course/{courseId}": {
"get": {
"tags": [
"Admin Recommender"
],
"summary": "Recommendation for completion of the course.",
"description": "Get recommendation for completion of the course.",
"operationId": "523315d1a255465a755fc83dc32e9ecf",
"parameters": [
{
"name": "id",
"in": "path",
"description": "ID of course",
"required": true,
"schema": {
"type": "integer"
}
}
],
"responses": {
"201": {
"description": "Successfull operation",
"content": {
"application/json": {
"schema": {
"properties": {
"success": {
"type": "boolean"
},
"data": {
"type": "object"
},
"message": {
"type": "string"
}
},
"type": "object"
}
}
}
}
},
"security": [
{
"passport": []
}
]
}
},
"/api/admin/recommender/lesson/{lessonId}/topic": {
"get": {
"tags": [
"Admin Recommender"
],
"summary": "Recommendation of the next exercise in the lesson.",
"description": "Get recommendation of the next exercise in the lesson..",
"operationId": "6fc3b0727d74285847213bc8f7aae3cb",
"parameters": [
{
"name": "id",
"in": "path",
"description": "ID of lesson",
"required": true,
"schema": {
"type": "integer"
}
}
],
"responses": {
"201": {
"description": "Successfull operation",
"content": {
"application/json": {
"schema": {
"properties": {
"success": {
"type": "boolean"
},
"data": {
"type": "object"
},
"message": {
"type": "string"
}
},
"type": "object"
}
}
}
}
},
"security": [
{
"passport": []
}
]
}
},
"/api/admin/reports/metrics": {
"get": {
"tags": [
Expand Down

0 comments on commit b5e8e52

Please sign in to comment.