resolve bad name of var logout1

This commit is contained in:
Cayo Puigdefabregas 2021-04-12 12:10:57 +02:00
parent b9ff50978b
commit 3be8678328
1 changed files with 2 additions and 2 deletions

View File

@ -23,8 +23,8 @@ class UserDef(Resource):
super().__init__(app, import_name, static_folder, static_url_path, template_folder,
url_prefix, subdomain, url_defaults, root_path, cli_commands)
self.add_url_rule('/login/', view_func=login, methods={'POST'})
logout1 = app.auth.requires_auth(logout)
self.add_url_rule('/logout/', view_func=logout1, methods={'GET'})
logout_view = app.auth.requires_auth(logout)
self.add_url_rule('/logout/', view_func=logout_view, methods={'GET'})
@argument('email')
@option('-i', '--inventory',