Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
TAM
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package registry
Container registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
EIP
Labrador
TAM
Merge requests
!79
Add API documentation for the assigned requests
Code
Review changes
Check out branch
Open in Workspace
Download
Patches
Plain diff
Expand sidebar
Merged
Add API documentation for the assigned requests
backend_assigned_documentation
into
dev
Overview
0
Commits
1
Pipelines
1
Changes
1
Merged
Add API documentation for the assigned requests
Otto Visser
requested to merge
backend_assigned_documentation
into
dev
Jun 6, 2018
Overview
0
Commits
1
Pipelines
1
Changes
1
0
0
Merge request reports
Compare
dev
dev (base)
and
latest version
latest version
9b16b769
1 commit,
Jun 6, 2018
1 file
+
58
−
0
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
src/main/resources/rest/restapi.yaml
+
58
−
0
View file @ 9b16b769
Edit in single-file editor
Open in Web IDE
Show full file
@@ -695,6 +695,32 @@ paths:
description
:
"
Bad
input"
404
:
description
:
"
Course
with
the
given
ID
not
found"
/course/{courseId}/assigned
:
get
:
tags
:
-
"
course"
summary
:
"
Get
assigned
students
to
the
given
course."
description
:
"
Returns
the
assigned
students
to
the
given
course."
produces
:
-
"
application/json"
parameters
:
-
name
:
"
courseId"
in
:
"
path"
description
:
"
unique
identifier
of
the
course
to
update
the
lab
for"
required
:
true
type
:
"
integer"
format
:
"
int64"
responses
:
200
:
description
:
"
Successful
operation"
schema
:
type
:
"
array"
items
:
$ref
:
"
#/definitions/CompleteUser"
400
:
description
:
"
Bad
input"
404
:
description
:
"
Course
with
the
given
ID
not
found"
/course/{courseId}/labs
:
get
:
tags
:
@@ -842,6 +868,38 @@ paths:
description
:
"
Bad
input"
404
:
description
:
"
Course
with
the
given
ID
not
found
or
the
lab
is
not
found"
/course/{courseId}/labs/{labId}/assigned
:
get
:
tags
:
-
"
course"
summary
:
"
Get
assigned
students
to
the
given
lab
for
the
given
course."
description
:
"
Returns
the
assigned
students
to
the
given
lab
for
the
given
course."
produces
:
-
"
application/json"
parameters
:
-
name
:
"
courseId"
in
:
"
path"
description
:
"
unique
identifier
of
the
course
to
update
the
lab
for"
required
:
true
type
:
"
integer"
format
:
"
int64"
-
name
:
"
labId"
in
:
"
path"
description
:
"
unique
identifier
of
the
lab
that
has
to
be
updated"
required
:
true
type
:
"
integer"
format
:
"
int64"
responses
:
200
:
description
:
"
Successful
operation"
schema
:
type
:
"
array"
items
:
$ref
:
"
#/definitions/CompleteUser"
400
:
description
:
"
Bad
input"
404
:
description
:
"
Course
with
the
given
ID
not
found
or
the
lab
is
not
found"
/timeslot/available
:
Loading