Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
E
edx-platform-release
Manage
Activity
Members
Labels
Plan
Issues
0
Issue boards
Milestones
Wiki
Code
Merge requests
1
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Package Registry
Model registry
Operate
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Hsin-Yu Chien
edx-platform-release
Commits
628eb866
Commit
628eb866
authored
9 years ago
by
Max Rothman
Browse files
Options
Downloads
Plain Diff
Merge pull request #9558 from edx/max/set-superuser
Add management command for granting superuser access
parents
9751b00b
5923675c
Loading
Loading
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
common/djangoapps/student/management/commands/set_superuser.py
+46
-0
46 additions, 0 deletions
...n/djangoapps/student/management/commands/set_superuser.py
with
46 additions
and
0 deletions
common/djangoapps/student/management/commands/set_superuser.py
0 → 100644
+
46
−
0
View file @
628eb866
"""
Management command to grant or revoke superuser access for one or more users
"""
from
optparse
import
make_option
from
django.contrib.auth.models
import
User
from
django.core.management.base
import
BaseCommand
,
CommandError
class
Command
(
BaseCommand
):
"""
Management command to grant or revoke superuser access for one or more users
"""
option_list
=
BaseCommand
.
option_list
+
(
make_option
(
'
--unset
'
,
action
=
'
store_true
'
,
dest
=
'
unset
'
,
default
=
False
,
help
=
'
Set is_superuser to False instead of True
'
),
)
args
=
'
<user|email> [user|email ...]>
'
help
=
"""
This command will set is_superuser to true for one or more users.
Lookup by username or email address, assumes usernames
do not look like email addresses.
"""
def
handle
(
self
,
*
args
,
**
options
):
if
len
(
args
)
<
1
:
raise
CommandError
(
'
Usage is set_superuser {0}
'
.
format
(
self
.
args
))
for
user
in
args
:
try
:
if
'
@
'
in
user
:
userobj
=
User
.
objects
.
get
(
email
=
user
)
else
:
userobj
=
User
.
objects
.
get
(
username
=
user
)
if
options
[
'
unset
'
]:
userobj
.
is_superuser
=
False
else
:
userobj
.
is_superuser
=
True
userobj
.
save
()
except
Exception
as
err
:
# pylint: disable=broad-except
print
"
Error modifying user with identifier {}: {}: {}
"
.
format
(
user
,
type
(
err
).
__name__
,
err
.
message
)
print
'
Success!
'
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment