mirror of
https://github.com/rommapp/romm.git
synced 2026-02-18 00:27:41 +01:00
23 lines
611 B
Python
23 lines
611 B
Python
from fastapi import HTTPException, status
|
|
|
|
AuthCredentialsException = HTTPException(
|
|
status_code=status.HTTP_401_UNAUTHORIZED,
|
|
detail="Incorrect username or password",
|
|
)
|
|
|
|
AuthenticationSchemeException = HTTPException(
|
|
status_code=status.HTTP_401_UNAUTHORIZED,
|
|
detail="Invalid authentication scheme",
|
|
)
|
|
|
|
DisabledException = HTTPException(
|
|
status_code=status.HTTP_401_UNAUTHORIZED,
|
|
detail="Disabled user",
|
|
)
|
|
|
|
OAuthCredentialsException = HTTPException(
|
|
status_code=status.HTTP_401_UNAUTHORIZED,
|
|
detail="Could not validate credentials",
|
|
headers={"WWW-Authenticate": "Bearer"},
|
|
)
|