From 769661e508d966cd01c9a53b376f98606e66cbb3 Mon Sep 17 00:00:00 2001 From: Tom Taylor Date: Tue, 12 Feb 2019 09:36:39 +0000 Subject: [PATCH 1/2] Update sharing options Fixes #2345. --- src/core/schema/course.model.schema | 17 +++++++++++++++-- 1 file changed, 15 insertions(+), 2 deletions(-) diff --git a/src/core/schema/course.model.schema b/src/core/schema/course.model.schema index 764e7f457..f4b48399f 100644 --- a/src/core/schema/course.model.schema +++ b/src/core/schema/course.model.schema @@ -584,8 +584,21 @@ "editorOnly": true, "inputType": "Checkbox", "validators": [], - "title": "Share with other users", - "help": "Controls whether or not your colleagues will be able to see this course from the 'Shared courses' option" + "title": "Share with all users", + "help": "Controls whether or not all colleagues will be able to see this course from the 'Shared courses' option" + }, + "_shareWithUsers": { + "type": "array", + "inputType": "Users", + "items": { + "type": "objectid", + "inputType": "Text", + "required": false, + "editorOnly": true, + "ref": "user" + }, + "title": "Share with specific users", + "help": "Specifies which colleagues will be able to see this course from the 'Shared courses' option" }, "themeSettings": { "type": "object" From add5e0aaafe98eeb76db7ad004cd16698653370a Mon Sep 17 00:00:00 2001 From: Tom Taylor Date: Mon, 29 Apr 2019 18:08:59 +0100 Subject: [PATCH 2/2] Reword help text following feedback --- src/core/schema/course.model.schema | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/core/schema/course.model.schema b/src/core/schema/course.model.schema index f4b48399f..dbf7ede78 100644 --- a/src/core/schema/course.model.schema +++ b/src/core/schema/course.model.schema @@ -585,7 +585,7 @@ "inputType": "Checkbox", "validators": [], "title": "Share with all users", - "help": "Controls whether or not all colleagues will be able to see this course from the 'Shared courses' option" + "help": "Defines whether this course will be editable by all users" }, "_shareWithUsers": { "type": "array", @@ -598,7 +598,7 @@ "ref": "user" }, "title": "Share with specific users", - "help": "Specifies which colleagues will be able to see this course from the 'Shared courses' option" + "help": "Defines which individual users are able to edit this course" }, "themeSettings": { "type": "object"