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
24524ef3
Commit
24524ef3
authored
11 years ago
by
John Jarvis
Browse files
Options
Downloads
Patches
Plain Diff
addressing comments
parent
4a910f87
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
common/djangoapps/student/management/commands/create_user.py
+5
-5
5 additions, 5 deletions
common/djangoapps/student/management/commands/create_user.py
with
5 additions
and
5 deletions
common/djangoapps/student/management/commands/create_user.py
+
5
−
5
View file @
24524ef3
...
...
@@ -8,20 +8,20 @@ from django.contrib.auth.models import User
class
Command
(
BaseCommand
):
help
=
"""
This command creates and registers a user in a given course
as
"
audit
"
,
"
verified
_id
"
or
"
honor
"
.
as
"
audit
"
,
"
verified
"
or
"
honor
"
.
example:
# Enroll a user test@example.com into the demo course
# The username and name will default to
"
test
"
manage.py ... create_user -e test@example.com -p insecure -c edX/Open_DemoX/edx_demo_course -m verified
_id
manage.py ... create_user -e test@example.com -p insecure -c edX/Open_DemoX/edx_demo_course -m verified
"""
option_list
=
BaseCommand
.
option_list
+
(
make_option
(
'
-m
'
,
'
--mode
'
,
metavar
=
'
ENROLLMENT_
TYP
E
'
,
metavar
=
'
ENROLLMENT_
MOD
E
'
,
dest
=
'
mode
'
,
default
=
'
honor
'
,
choices
=
(
'
audit
'
,
'
verified
_id
'
,
'
honor
'
),
choices
=
(
'
audit
'
,
'
verified
'
,
'
honor
'
),
help
=
'
Enrollment type for user for a specific course
'
),
make_option
(
'
-u
'
,
'
--username
'
,
metavar
=
'
USERNAME
'
,
...
...
@@ -47,7 +47,7 @@ class Command(BaseCommand):
metavar
=
'
COURSE_ID
'
,
dest
=
'
course
'
,
default
=
None
,
help
=
'
course to enroll the user in (optiona)
'
),
help
=
'
course to enroll the user in (optiona
l
)
'
),
make_option
(
'
-s
'
,
'
--staff
'
,
metavar
=
'
COURSE_ID
'
,
dest
=
'
staff
'
,
...
...
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