Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
ARSnova Backend
Manage
Activity
Members
Labels
Plan
Issues
27
Issue boards
Milestones
Code
Merge requests
1
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Help
Help
Support
GitLab documentation
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Privacy
Imprint
Contact
Snippets
Groups
Projects
Show more breadcrumbs
ARSnova
ARSnova Backend
Commits
1c45556e
There was an error fetching the commit references. Please try again later.
Commit
1c45556e
authored
12 years ago
by
Christoph Thelen
Browse files
Options
Downloads
Patches
Plain Diff
Re-added method that has gone away while merging
parent
23b6d2dc
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/main/java/de/thm/arsnova/controller/SessionController.java
+17
-0
17 additions, 0 deletions
...ain/java/de/thm/arsnova/controller/SessionController.java
with
17 additions
and
0 deletions
src/main/java/de/thm/arsnova/controller/SessionController.java
+
17
−
0
View file @
1c45556e
...
...
@@ -18,6 +18,7 @@
*/
package
de.thm.arsnova.controller
;
import
java.util.List
;
import
java.util.UUID
;
import
javax.servlet.http.HttpServletResponse
;
...
...
@@ -154,4 +155,20 @@ public class SessionController extends AbstractController {
return
url
.
toString
();
}
@RequestMapping
(
value
=
"/mySessions"
,
method
=
RequestMethod
.
GET
)
@ResponseBody
public
List
<
Session
>
getMySession
(
HttpServletResponse
response
)
{
String
username
=
userService
.
getUser
(
SecurityContextHolder
.
getContext
().
getAuthentication
()).
getUsername
();
if
(
username
==
null
)
{
response
.
setStatus
(
HttpStatus
.
NOT_FOUND
.
value
());
return
null
;
}
List
<
Session
>
sessions
=
sessionService
.
getMySessions
(
username
);
if
(
sessions
==
null
||
sessions
.
isEmpty
())
{
response
.
setStatus
(
HttpStatus
.
NOT_FOUND
.
value
());
return
null
;
}
return
sessions
;
}
}
This diff is collapsed.
Click to expand it.
Preview
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment