Entry point for all the authentication sources. The user input will be validated and authenticated.
()
| 92 | |
| 93 | @blueprint.route('/login', endpoint='login', methods=['GET', 'POST']) |
| 94 | def login(): |
| 95 | """ |
| 96 | Entry point for all the authentication sources. |
| 97 | The user input will be validated and authenticated. |
| 98 | """ |
| 99 | with AuthLocker(): |
| 100 | return _login() |
| 101 | |
| 102 | |
| 103 | def _login(): |
nothing calls this directly
no test coverage detected