We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
security.py 51 async def check(typestring, querydata): 52 if singletons.settings.SECURITY is not None: 53 checker_class = singletons.settings.load('SECURITY') 54 else: 55 checker_class = DummySecurity 56 checker = checker_class() 57 url_string = querydata['url'][0] 58 foreign_res = ForeignResource(url_string) 59 foreign_res.validate() # TODO move domain checks into this module 60 await checker.check(typestring, querydata)
The text was updated successfully, but these errors were encountered:
No branches or pull requests
The text was updated successfully, but these errors were encountered: