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
a560c24b
Commit
a560c24b
authored
Oct 01, 2012
by
Chris Dodge
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
add error response when trying to remove a user which does not exist
parent
271c46d5
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
1 deletions
+3
-1
cms/djangoapps/contentstore/views.py
+3
-1
No files found.
cms/djangoapps/contentstore/views.py
View file @
a560c24b
...
...
@@ -601,7 +601,9 @@ def remove_user(request, org, course, name):
raise
PermissionDenied
()
user
=
get_user_by_email
(
email
)
if
user
is
not
None
:
if
user
is
None
:
return
create_json_response
(
'Could not find user by email address
\'
{0}
\'
.'
.
format
(
email
))
remove_user_from_course_group
(
request
.
user
,
user
,
location
,
EDITOR_ROLE_NAME
)
return
create_json_response
()
...
...
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