sonar issue

This commit is contained in:
jain
2023-07-15 23:07:12 +05:30
parent 5bd865a685
commit 32e52e17f4
4 changed files with 19 additions and 14 deletions

View File

@ -9,15 +9,15 @@ from rest_framework import routers
"""Define Router"""
router = routers.SimpleRouter()
"""API End points with router
in this file
we define various api end point
that is covered in this guardian
section API:- like
sign-up, create guardian profile,
create-task,
all task list, top junior,
filter-task"""
# API End points with router
# in this file
# we define various api end point
# that is covered in this guardian
# section API:- like
# sign-up, create guardian profile,
# create-task,
# all task list, top junior,
# filter-task"""
"""Sign up API"""
router.register('sign-up', SignupViewset, basename='sign-up')
"""Create guardian profile API"""