Merge pull request #21133 from edx/awais786/INCR-445

INCR-445
This commit is contained in:
Awais Qureshi
2019-07-19 13:44:38 +05:00
committed by GitHub
7 changed files with 17 additions and 3 deletions

View File

@@ -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)

View File

@@ -2,6 +2,8 @@
Student Identity Verification Application Configuration
"""
from __future__ import absolute_import
from django.apps import AppConfig

View File

@@ -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

View File

@@ -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__)

View File

@@ -1,6 +1,8 @@
"""
Django Celery tasks for service status app
"""
from __future__ import absolute_import
import logging
from smtplib import SMTPException

View File

@@ -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

View File

@@ -3,6 +3,8 @@
Common Utilities for the verify_student application.
"""
from __future__ import absolute_import
import datetime
import logging