Skip to content

Commit

Permalink
test(SkillRoute): ADDING IC DEBBUG IN THE get_all route
Browse files Browse the repository at this point in the history
  • Loading branch information
gabszs committed Jun 13, 2024
1 parent 752b084 commit 6b8243a
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions app/routes/v1/skill_routes.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,9 @@
@router.get("/", response_model=FindSkillResult)
async def get_all_skills(find_query: FindQueryParameters, service: SkillServiceDependency):
from icecream import ic
from app.core.settings import settings
ic(find_query)
ic(settings.ORDERING, settings.PAGE, settings.PAGE_SIZE)
return await service.get_list(find_query)


Expand Down

0 comments on commit 6b8243a

Please sign in to comment.