Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
Submit
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
Deploy
Releases
Package registry
Container registry
Model registry
Operate
Terraform modules
Analyze
Contributor analytics
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
Submit
Merge requests
!68
Pre master merge fixes
Code
Review changes
Check out branch
Open in Workspace
Download
Patches
Plain diff
Expand sidebar
Merged
Pre master merge fixes
pre-master-merge-fixes
into
development
Overview
5
Commits
1
Pipelines
0
Changes
8
All threads resolved!
Hide all comments
Merged
Pre master merge fixes
Ruben Backx
requested to merge
pre-master-merge-fixes
into
development
Nov 4, 2020
Overview
5
Commits
1
Pipelines
0
Changes
8
All threads resolved!
Hide all comments
0
0
Merge request reports
Compare
development
version 5
0a511f6e
Nov 5, 2020
version 4
51518f85
Nov 5, 2020
version 3
95c34b35
Nov 5, 2020
version 2
3e0a3bc8
Nov 5, 2020
version 1
857ffcfc
Nov 4, 2020
development (base)
and
latest version
latest version
be916f6d
1 commit,
Nov 5, 2020
version 5
0a511f6e
1 commit,
Nov 5, 2020
version 4
51518f85
1 commit,
Nov 5, 2020
version 3
95c34b35
1 commit,
Nov 5, 2020
version 2
3e0a3bc8
1 commit,
Nov 5, 2020
version 1
857ffcfc
1 commit,
Nov 4, 2020
8 files
+
63
−
132
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
8
src/main/java/nl/tudelft/submit/controller/EditionController.java
+
0
−
6
View file @ be916f6d
Edit in single-file editor
Open in Web IDE
Show full file
@@ -525,12 +525,6 @@ public class EditionController {
@PreAuthorize
(
"@authorizationService.hasTeacherRoleInEdition(#id)"
)
public
ResponseEntity
<
Resource
>
exportGrades
(
@PathVariable
Long
id
,
@ModelAttribute
(
"exportOptions"
)
GradeExportOptions
options
)
throws
IOException
{
if
(
options
.
getExportEditionGrade
()
==
null
)
options
.
setExportEditionGrade
(
false
);
if
(
options
.
getExportModuleGrades
()
==
null
)
options
.
setExportModuleGrades
(
false
);
if
(
options
.
getExportAssignmentGrades
()
==
null
)
options
.
setExportAssignmentGrades
(
false
);
return
csvService
.
getResponse
(
exportService
.
exportGradesForEdition
(
id
,
options
));
}
Loading