Skip to content
Snippets Groups Projects
Commit 19591038 authored by srosse's avatar srosse
Browse files

OO-3330: per default save the calendar setting with 'visible' and 'aggregated'...

OO-3330: per default save the calendar setting with 'visible' and 'aggregated' like the defaults if there are no user configuration yet
parent 4cfd0d5c
No related branches found
No related tags found
No related merge requests found
......@@ -426,14 +426,14 @@ public class ICalFileCalendarManager implements CalendarManager, InitializingBea
String token = RandomStringUtils.randomAlphanumeric(6);
Kalendar calendar = new Kalendar(identity.getKey().toString(), CalendarManager.TYPE_USER_AGGREGATED);
return calendarUserConfigDao.createCalendarUserConfiguration(calendar, identity,
token, false, false);
token, true, true);
}
@Override
public CalendarUserConfiguration createCalendarConfig(Identity identity, Kalendar calendar) {
String token = RandomStringUtils.randomAlphanumeric(6);
return calendarUserConfigDao.createCalendarUserConfiguration(calendar, identity,
token, false, false);
token, true, true);
}
@Override
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment