Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions api.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,7 @@ paths:
get:
tags:
- admins
- teachers
summary: gets the list of users.
operationId: getUsers
description: |
Expand Down Expand Up @@ -2519,6 +2520,9 @@ components:
name:
type: string
example: "Test group for School"
sandbox:
type: boolean
example: true
owners:
type: array
items:
Expand Down Expand Up @@ -2561,6 +2565,9 @@ components:
allocator:
type: string
example: ObjectId("5d07a0767c1405004bc702af")
sandbox:
type: string
example: ObjectId("5d07a0767c1405004bc702af")
groups:
type: array
items:
Expand Down
11 changes: 10 additions & 1 deletion openapi.json
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,8 @@
"/users": {
"get": {
"tags": [
"admins"
"admins",
"teachers"
],
"summary": "gets the list of users.",
"operationId": "getUsers",
Expand Down Expand Up @@ -3795,6 +3796,10 @@
"type": "string",
"example": "Test group for School"
},
"sandbox": {
"type": "boolean",
"example": true
},
"owners": {
"type": "array",
"items": {
Expand Down Expand Up @@ -3852,6 +3857,10 @@
"type": "string",
"example": "ObjectId(\"5d07a0767c1405004bc702af\")"
},
"sandbox": {
"type": "string",
"example": "ObjectId(\"5d07a0767c1405004bc702af\")"
},
"groups": {
"type": "array",
"items": {
Expand Down