@@ -3,9 +3,11 @@
|
||||
Admin site configurations for verify_student.
|
||||
"""
|
||||
|
||||
from __future__ import absolute_import
|
||||
|
||||
from django.contrib import admin
|
||||
|
||||
from lms.djangoapps.verify_student.models import SoftwareSecurePhotoVerification, SSOVerification, ManualVerification
|
||||
from lms.djangoapps.verify_student.models import ManualVerification, SoftwareSecurePhotoVerification, SSOVerification
|
||||
|
||||
|
||||
@admin.register(SoftwareSecurePhotoVerification)
|
||||
|
||||
@@ -2,6 +2,8 @@
|
||||
Student Identity Verification Application Configuration
|
||||
"""
|
||||
|
||||
from __future__ import absolute_import
|
||||
|
||||
from django.apps import AppConfig
|
||||
|
||||
|
||||
|
||||
@@ -2,6 +2,8 @@
|
||||
ACE message types for the verify_student module.
|
||||
"""
|
||||
|
||||
from __future__ import absolute_import
|
||||
|
||||
from openedx.core.djangoapps.ace_common.message import BaseMessageType
|
||||
|
||||
|
||||
|
||||
@@ -2,9 +2,11 @@
|
||||
Implementation of abstraction layer for other parts of the system to make queries related to ID Verification.
|
||||
"""
|
||||
|
||||
import logging
|
||||
from __future__ import absolute_import
|
||||
|
||||
import logging
|
||||
from itertools import chain
|
||||
|
||||
from django.conf import settings
|
||||
from django.urls import reverse
|
||||
from django.utils.translation import ugettext as _
|
||||
@@ -13,7 +15,7 @@ from course_modes.models import CourseMode
|
||||
from openedx.core.djangoapps.site_configuration import helpers as configuration_helpers
|
||||
from student.models import User
|
||||
|
||||
from .models import SoftwareSecurePhotoVerification, SSOVerification, ManualVerification
|
||||
from .models import ManualVerification, SoftwareSecurePhotoVerification, SSOVerification
|
||||
from .utils import earliest_allowed_verification_date, most_recent_verification
|
||||
|
||||
log = logging.getLogger(__name__)
|
||||
|
||||
@@ -1,6 +1,8 @@
|
||||
"""
|
||||
Django Celery tasks for service status app
|
||||
"""
|
||||
from __future__ import absolute_import
|
||||
|
||||
import logging
|
||||
from smtplib import SMTPException
|
||||
|
||||
|
||||
@@ -2,6 +2,8 @@
|
||||
URL definitions for the verify_student app.
|
||||
"""
|
||||
|
||||
from __future__ import absolute_import
|
||||
|
||||
from django.conf import settings
|
||||
from django.conf.urls import url
|
||||
|
||||
|
||||
@@ -3,6 +3,8 @@
|
||||
Common Utilities for the verify_student application.
|
||||
"""
|
||||
|
||||
from __future__ import absolute_import
|
||||
|
||||
import datetime
|
||||
import logging
|
||||
|
||||
|
||||
Reference in New Issue
Block a user