MCPcopy Create free account
hub / github.com/pgadmin-org/pgadmin4 / login

Function login

web/pgadmin/authenticate/__init__.py:94–100  ·  view source on GitHub ↗

Entry point for all the authentication sources. The user input will be validated and authenticated.

()

Source from the content-addressed store, hash-verified

92
93@blueprint.route('/login', endpoint='login', methods=['GET', 'POST'])
94def 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
103def _login():

Callers

nothing calls this directly

Calls 2

AuthLockerClass · 0.85
_loginFunction · 0.85

Tested by

no test coverage detected