Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
E
edx-platform
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
edx
edx-platform
Commits
9e4f14f1
Commit
9e4f14f1
authored
Feb 29, 2016
by
Ben Patterson
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Revert "Registration: don't require terms of service if checkbox is hidden"
parent
23a0a6d4
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
1 additions
and
11 deletions
+1
-11
common/djangoapps/student/views.py
+1
-1
openedx/core/djangoapps/user_api/tests/test_views.py
+0
-10
No files found.
common/djangoapps/student/views.py
View file @
9e4f14f1
...
...
@@ -1628,7 +1628,7 @@ def create_account_with_params(request, params):
not
do_external_auth
)
# Can't have terms of service for certain SHIB users, like at Stanford
tos_required
=
settings
.
REGISTRATION_EXTRA_FIELDS
.
get
(
'terms_of_service'
)
!=
'hidden'
and
(
tos_required
=
(
not
settings
.
FEATURES
.
get
(
"AUTH_USE_SHIB"
)
or
not
settings
.
FEATURES
.
get
(
"SHIB_DISABLE_TOS"
)
or
not
do_external_auth
or
...
...
openedx/core/djangoapps/user_api/tests/test_views.py
View file @
9e4f14f1
...
...
@@ -1683,16 +1683,6 @@ class RegistrationViewTest(ThirdPartyAuthTestMixin, ApiTestCase):
}
)
@override_settings
(
REGISTRATION_EXTRA_FIELDS
=
{
"honor_code"
:
"hidden"
,
"terms_of_service"
:
"hidden"
})
def
test_register_hidden_honor_code_and_terms_of_service
(
self
):
response
=
self
.
client
.
post
(
self
.
url
,
{
"email"
:
self
.
EMAIL
,
"name"
:
self
.
NAME
,
"username"
:
self
.
USERNAME
,
"password"
:
self
.
PASSWORD
,
})
self
.
assertHttpOK
(
response
)
def
test_missing_fields
(
self
):
response
=
self
.
client
.
post
(
self
.
url
,
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment