Skip to content
Snippets Groups Projects

Draft: fix(FastAPI): add custom error templates for certain exceptions

Closed Steven Guikal requested to merge fluix/aurweb:fix-error-pages into pu
All threads resolved!
Files
4
+ 4
1
@@ -97,11 +97,14 @@ def provides_list(package: models.Package, depname: str) -> list:
def get_pkg_or_base(
name: str,
cls: Union[models.Package, models.PackageBase] = models.PackageBase):
cls: Union[models.Package, models.PackageBase] = models.PackageBase) \
-> Union[models.Package, models.PackageBase]:
""" Get a PackageBase instance by its name or raise a 404 if
it can't be found in the database.
:param name: {Package,PackageBase}.Name
:param exception: Whether to raise an HTTPException or simply return None if
the package can't be found.
:raises HTTPException: With status code 404 if record doesn't exist
:return: {Package,PackageBase} instance
"""
Loading