mirror of
https://github.com/xbgmsharp/postgsail.git
synced 2025-09-17 03:07:47 +00:00
Update login fn to return 401 Unauthorized vs 403 Forbidden
This commit is contained in:
@@ -183,7 +183,10 @@ begin
|
|||||||
-- check email and password
|
-- check email and password
|
||||||
select auth.user_role(email, pass) into _role;
|
select auth.user_role(email, pass) into _role;
|
||||||
if _role is null then
|
if _role is null then
|
||||||
raise invalid_password using message = 'invalid user or password';
|
-- HTTP/403
|
||||||
|
--raise invalid_password using message = 'invalid user or password';
|
||||||
|
-- HTTP/401
|
||||||
|
raise insufficient_privilege using message = 'invalid user or password';
|
||||||
end if;
|
end if;
|
||||||
|
|
||||||
-- Get app_jwt_secret
|
-- Get app_jwt_secret
|
||||||
|
Reference in New Issue
Block a user