feat(devops): Update Checkin model url route basename

ref: #807 closes #808
This commit is contained in:
2025-06-09 11:13:10 +09:30
parent 9a250c988d
commit 6b54eebbd2
7 changed files with 8 additions and 8 deletions

View File

@ -13,6 +13,6 @@ router = SimpleRouter(trailing_slash=False)
router.register('flags', feature_flag_endpoints.Index, basename='_api_v2_flags')
router.register('(?P<organization_id>[0-9]+)/flags/(?P<software_id>[0-9]+)', public_feature_flag.ViewSet, basename='_public_api_v2_feature_flag')
router.register('(?P<organization_id>[0-9]+)/flags/(?P<software_id>[0-9]+)', public_feature_flag.ViewSet, basename='_api_checkin')
urlpatterns = router.urls