Skip to content
Snippets Groups Projects
Commit 428c6b75 authored by User expired's avatar User expired
Browse files

openolat#224: changed default recording publishing setting in the virtual classroom to manual

parent b6062f35
No related branches found
No related tags found
No related merge requests found
......@@ -204,7 +204,7 @@ public class EditBigBlueButtonMeetingController extends FormBasicController {
publishKeyValues.add(KeyValues.entry(BigBlueButtonRecordingsPublishingEnum.auto.name(), translate("meeting.publishing.auto")));
publishKeyValues.add(KeyValues.entry(BigBlueButtonRecordingsPublishingEnum.manual.name(), translate("meeting.publishing.manual")));
publishingEl = uifactory.addRadiosVertical("meeting.publishing", formLayout, publishKeyValues.keys(), publishKeyValues.values());
BigBlueButtonRecordingsPublishingEnum publish = meeting == null ? BigBlueButtonRecordingsPublishingEnum.auto : meeting.getRecordingsPublishingEnum();
BigBlueButtonRecordingsPublishingEnum publish = meeting == null ? BigBlueButtonRecordingsPublishingEnum.manual : meeting.getRecordingsPublishingEnum();
publishingEl.select(publish.name(), true);
publishingEl.setEnabled(editable);
......
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