Skip to content
Snippets Groups Projects
Commit 72069fd6 authored by Tom Käsler's avatar Tom Käsler
Browse files

also change creator when updating a session

parent c9bb2c9b
Branches
Tags
No related merge requests found
......@@ -1559,6 +1559,7 @@ public class CouchDBDao implements IDatabaseDao, ApplicationEventPublisherAware
try {
final Document s = database.getDocument(session.get_id());
s.put("name", session.getName());
s.put("creator", session.getCreator());
s.put("shortName", session.getShortName());
s.put("active", session.isActive());
s.put("ppAuthorName", session.getPpAuthorName());
......
......@@ -320,6 +320,7 @@ public class SessionService implements ISessionService, ApplicationEventPublishe
existingSession.setPpLicense(session.getPpLicense());
existingSession.setPpSubject(session.getPpSubject());
existingSession.setFeedbackLock(session.getFeedbackLock());
existingSession.setCreator(session.getCreator());
handleLogo(session);
existingSession.setPpLogo(session.getPpLogo());
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment