Source code for geonode.management_commands_http.routers

from rest_framework import routers

from geonode.management_commands_http.views import ManagementCommandJobViewSet


[docs] router = routers.DefaultRouter()
router.register("jobs", ManagementCommandJobViewSet, basename="job")