Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Informal facilities get 'Create an Account' button visible by default #7553

Merged
merged 1 commit into from
Oct 12, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
1 change: 1 addition & 0 deletions AUTHORS.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ If you have contributed to Kolibri, feel free to add your name and Github accoun
| Name | Github user |
|------|-------------|
| Eli Dai | 66eli77 |
| Adam Stasiw | AdamStasiw |
| Akshay Mahajan | akshaymahajans |
| Alan Chen | alanchenz |
| Alexandros Metaxas | alexMet |
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
"learner_can_edit_username": true,
"learner_can_edit_name": true,
"learner_can_edit_password": true,
"learner_can_sign_up": false,
"learner_can_sign_up": true,
"learner_can_delete_account": true,
"learner_can_login_with_no_password": false,
"show_download_button_in_learn": true
Expand Down
2 changes: 1 addition & 1 deletion kolibri/core/device/test/test_api.py
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ def test_personal_setup_defaults(self):
self.assertEqual(settings.learner_can_edit_username, True)
self.assertEqual(settings.learner_can_edit_name, True)
self.assertEqual(settings.learner_can_edit_password, True)
self.assertEqual(settings.learner_can_sign_up, False)
self.assertEqual(settings.learner_can_sign_up, True)
self.assertEqual(settings.learner_can_delete_account, True)
self.assertEqual(settings.learner_can_login_with_no_password, False)
self.assertEqual(settings.show_download_button_in_learn, True)
Expand Down