diff --git a/lms/djangoapps/course_wiki/views.py b/lms/djangoapps/course_wiki/views.py index 904a674f3669a593170bad5e28ddb8d64a5240ec..b1d9f1cf2649f7bd90914cfb0dd49929a065fe15 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