diff --git a/src/main/java/org/olat/course/nodes/livestream/LiveStreamSecurityCallbackFactory.java b/src/main/java/org/olat/course/nodes/livestream/LiveStreamSecurityCallbackFactory.java index bd28d9ad7b9c602c99e263179a56558f160e75a7..45028bd4c124b3efc1dc7ea8a195b8f53b7bc22b 100644 --- a/src/main/java/org/olat/course/nodes/livestream/LiveStreamSecurityCallbackFactory.java +++ b/src/main/java/org/olat/course/nodes/livestream/LiveStreamSecurityCallbackFactory.java @@ -35,8 +35,8 @@ public class LiveStreamSecurityCallbackFactory { ModuleConfiguration config) { boolean canViewStreams = true; // UIBK: we currently only allow olat admins to change/add streams, remove the first condition here to revert: - boolean canEditStreams = userCourseEnv.getIdentityEnvironment().getRoles().isAdministrator() && - userCourseEnv.isAdmin() + boolean canEditStreams = (userCourseEnv.getIdentityEnvironment().getRoles().isAdministrator() && + userCourseEnv.isAdmin()) || (userCourseEnv.isCoach() && config.getBooleanSafe(LiveStreamCourseNode.CONFIG_COACH_CAN_EDIT)); return createSecurityCallback(canViewStreams, canEditStreams); } diff --git a/src/main/java/org/olat/upgrade/OLATUpgrade_13_0_0.java b/src/main/java/org/olat/upgrade/OLATUpgrade_13_0_0.java index 4a706d8f29c5b933dd17792f2b7c43bdc7dab72f..6862e4783dd41a7383982c40134640091a518a98 100644 --- a/src/main/java/org/olat/upgrade/OLATUpgrade_13_0_0.java +++ b/src/main/java/org/olat/upgrade/OLATUpgrade_13_0_0.java @@ -324,7 +324,10 @@ public class OLATUpgrade_13_0_0 extends OLATUpgrade { if(access == RepositoryEntryAccessUpgrade.ACC_OWNERS) { status = RepositoryEntryStatusEnum.preparation; } else if(access == RepositoryEntryAccessUpgrade.ACC_OWNERS_AUTHORS) { - status = RepositoryEntryStatusEnum.review; + // UIBK: as we do not have the review status for now, we set this to preparation here. + // no entries should be in this "unpublished" status anyway... + log.info("Setting unpublished repository entry (" + entry.getOlatResource().getResourceableTypeName() + ") course with access ACC_OWNERS_AUTHORS to preparation status: " + entry.getDisplayname()); + status = RepositoryEntryStatusEnum.preparation; } } else if(access == RepositoryEntryAccessUpgrade.ACC_OWNERS) { if(isMembersOnly) { @@ -333,11 +336,20 @@ public class OLATUpgrade_13_0_0 extends OLATUpgrade { status = RepositoryEntryStatusEnum.preparation; } } else if(access == RepositoryEntryAccessUpgrade.ACC_OWNERS_AUTHORS) { - status = RepositoryEntryStatusEnum.review; + // UIBK: as we do not have the review status for now, we set this to published here. + log.info("Setting repository entry (" + entry.getOlatResource().getResourceableTypeName() + ") course with access ACC_OWNERS_AUTHORS to published: " + entry.getDisplayname()); + status = RepositoryEntryStatusEnum.published; + // UIBK: for courses we also set the flag reference, so other authors can see them. + // we can ignore other learning resources as they are handled manually + if (entry.getOlatResource().getResourceableTypeName().equals("CourseModule")) { + log.info("Setting course with access ACC_OWNERS_AUTHORS to referencable: " + entry.getDisplayname()); + entry.setCanReference(true); + } + } else if(access == RepositoryEntryAccessUpgrade.ACC_USERS || access == RepositoryEntryAccessUpgrade.ACC_USERS_GUESTS) { status = RepositoryEntryStatusEnum.published; } - + entry.setEntryStatus(status); dbInstance.getCurrentEntityManager().merge(entry); dbInstance.commit();