diff --git a/lms/djangoapps/course_wiki/views.py b/lms/djangoapps/course_wiki/views.py index 904a674f36..b1d9f1cf26 100644 --- a/lms/djangoapps/course_wiki/views.py +++ b/lms/djangoapps/course_wiki/views.py @@ -116,5 +116,13 @@ def get_or_create_root(): root = URLPath.create_root(title="edX Wiki", content=starting_content) + article = root.article + article.group = None + article.group_read = True + article.group_write = False + article.other_read = True + article.other_write = False + article.save() + return root