move crl validator

This commit is contained in:
dandds 2018-08-09 09:42:13 -04:00
parent efee79a566
commit 4da814aaf4
5 changed files with 4 additions and 4 deletions

View File

@ -16,7 +16,7 @@ from atst.routes.workspaces import bp as workspace_routes
from atst.routes.requests import requests_bp from atst.routes.requests import requests_bp
from atst.routes.dev import bp as dev_routes from atst.routes.dev import bp as dev_routes
from atst.routes.errors import make_error_pages from atst.routes.errors import make_error_pages
from atst.domain.authnid.crl.validator import Validator from atst.domain.authnid.crl import Validator
from atst.domain.auth import apply_authentication from atst.domain.auth import apply_authentication

View File

@ -56,7 +56,6 @@ def refresh_crls(out_dir, logger=None):
if __name__ == "__main__": if __name__ == "__main__":
import sys import sys
import datetime
import logging import logging
logging.basicConfig( logging.basicConfig(

View File

@ -61,7 +61,8 @@ class JEDIRequestFlow(object):
return self.current_screen["form"] return self.current_screen["form"]
# maps user data to fields in OrgForm; this should be moved into the # maps user data to fields in OrgForm; this should be moved into the
# request initialization process when we have a request schema # request initialization process when we have a request schema, or we just
# shouldn't record this data on the request
def map_current_user(self): def map_current_user(self):
if self.request: if self.request:
return { return {

View File

@ -4,7 +4,7 @@ import re
import os import os
import shutil import shutil
from OpenSSL import crypto, SSL from OpenSSL import crypto, SSL
from atst.domain.authnid.crl.validator import Validator from atst.domain.authnid.crl import Validator
import atst.domain.authnid.crl.util as util import atst.domain.authnid.crl.util as util