Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
F
Fullstack
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Madeleine Stenberg Jonassen
Fullstack
Merge requests
!35
Backend frontend sync
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Backend frontend sync
backend-frontend-sync
into
main
Overview
0
Commits
2
Pipelines
1
Changes
2
Merged
Torbjørn Antonsen
requested to merge
backend-frontend-sync
into
main
1 year ago
Overview
0
Commits
2
Pipelines
1
Changes
2
Expand
synced dashboardview to show actual quizzes from database
0
0
Merge request reports
Compare
main
main (base)
and
latest version
latest version
e7165de7
2 commits,
1 year ago
2 files
+
28
−
30
Side-by-side
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
2
Search (e.g. *.vue) (Ctrl+P)
FullstackProsjekt/src/backend/main/java/edu/ntnu/idatt2105/controller/QuizController.java
+
1
−
0
Options
@@ -85,6 +85,7 @@ public class QuizController {
@@ -85,6 +85,7 @@ public class QuizController {
quizDTO
.
setId
(
quiz
.
getId
());
quizDTO
.
setId
(
quiz
.
getId
());
quizDTO
.
setTitle
(
quiz
.
getTitle
());
quizDTO
.
setTitle
(
quiz
.
getTitle
());
quizDTO
.
setCategory
(
quiz
.
getCategory
());
quizDTO
.
setCategory
(
quiz
.
getCategory
());
quizDTO
.
setDifficulty
(
quiz
.
getDifficulty
());
return
quizDTO
;
return
quizDTO
;
}
}
Loading