Umbenennung get_visible_days

This commit is contained in:
penner 2022-12-21 23:38:33 +00:00
parent f81933946c
commit 0ce4e123d9

View file

@ -32,8 +32,8 @@ async def get_date() -> str:
return date.today().isoformat() return date.today().isoformat()
@router.get("/number") @router.get("/visible_days")
async def get_number() -> int: async def get_visible_days() -> int:
today = date.today() today = date.today()
if today.month == 12: if today.month == 12:
@ -48,7 +48,7 @@ async def get_number() -> int:
async def user_can_view( async def user_can_view(
index: int, index: int,
) -> bool: ) -> bool:
return index < await get_number() return index < await get_visible_days()
@router.get( @router.get(