Umbenennung get_visible_days
This commit is contained in:
parent
f81933946c
commit
0ce4e123d9
1 changed files with 3 additions and 3 deletions
|
@ -32,8 +32,8 @@ async def get_date() -> str:
|
|||
return date.today().isoformat()
|
||||
|
||||
|
||||
@router.get("/number")
|
||||
async def get_number() -> int:
|
||||
@router.get("/visible_days")
|
||||
async def get_visible_days() -> int:
|
||||
today = date.today()
|
||||
|
||||
if today.month == 12:
|
||||
|
@ -48,7 +48,7 @@ async def get_number() -> int:
|
|||
async def user_can_view(
|
||||
index: int,
|
||||
) -> bool:
|
||||
return index < await get_number()
|
||||
return index < await get_visible_days()
|
||||
|
||||
|
||||
@router.get(
|
||||
|
|
Loading…
Reference in a new issue