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
3be0fa81
Commit
3be0fa81
authored
Oct 20, 2017
by
Troy Sankey
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Move verify_student signal registration to ready()
parent
22f9530d
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
24 additions
and
6 deletions
+24
-6
lms/djangoapps/verify_student/__init__.py
+3
-0
lms/djangoapps/verify_student/apps.py
+19
-0
lms/djangoapps/verify_student/startup.py
+0
-4
lms/envs/common.py
+1
-1
lms/envs/test_with_mysql.py
+1
-1
No files found.
lms/djangoapps/verify_student/__init__.py
View file @
3be0fa81
"""
Student Identity Verification App
"""
lms/djangoapps/verify_student/apps.py
0 → 100644
View file @
3be0fa81
"""
Student Identity Verification Application Configuration
"""
from
django.apps
import
AppConfig
class
VerifyStudentConfig
(
AppConfig
):
"""
Application Configuration for verify_student.
"""
name
=
'lms.djangoapps.verify_student'
verbose_name
=
'Student Identity Verification'
def
ready
(
self
):
"""
Connect signal handlers.
"""
from
.
import
signals
# pylint: disable=unused-variable
lms/djangoapps/verify_student/startup.py
deleted
100644 → 0
View file @
22f9530d
"""
Setup the signals on startup.
"""
import
lms.djangoapps.verify_student.signals
# pylint: disable=unused-import
lms/envs/common.py
View file @
3be0fa81
...
@@ -2129,7 +2129,7 @@ INSTALLED_APPS = [
...
@@ -2129,7 +2129,7 @@ INSTALLED_APPS = [
'bulk_enroll'
,
'bulk_enroll'
,
# Student Identity Verification
# Student Identity Verification
'lms.djangoapps.verify_student'
,
'lms.djangoapps.verify_student
.apps.VerifyStudentConfig
'
,
# Dark-launching languages
# Dark-launching languages
'openedx.core.djangoapps.dark_lang'
,
'openedx.core.djangoapps.dark_lang'
,
...
...
lms/envs/test_with_mysql.py
View file @
3be0fa81
...
@@ -11,5 +11,5 @@ INSTALLED_APPS = [
...
@@ -11,5 +11,5 @@ INSTALLED_APPS = [
'django.contrib.auth'
,
'django.contrib.auth'
,
'django.contrib.contenttypes'
,
'django.contrib.contenttypes'
,
'lms.djangoapps.verify_student'
,
'lms.djangoapps.verify_student
.apps.VerifyStudentConfig
'
,
]
]
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