Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions app/routers/database.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
router = APIRouter(redirect_slashes=True)


@router.get("/size", description="Get DataBase Size")
@router.get("/size", description="Get Database Size")
async def get_db_size(cur_user: API = Depends(get_current_user)):
api : UptimeKumaApi = cur_user['api']
try:
Expand All @@ -19,12 +19,12 @@ async def get_db_size(cur_user: API = Depends(get_current_user)):
raise HTTPException(500, str(e))


@router.post("/shrink", description="Shrink DataBase")
@router.post("/shrink", description="Shrink Database")
async def shrink_db(cur_user: API = Depends(get_current_user)):
api : UptimeKumaApi = cur_user['api']
try:
resp = api.shrink_database()
return {"message": "DB Shrinked" , "details": resp}
return {"message": "Database shrinked" , "details": resp}
except Exception as e:
logging.fatal(e)
raise HTTPException(500, str(e))
raise HTTPException(500, str(e))