zalf-rdm / geonode

GeoNode is an open source platform that facilitates the creation, sharing, and collaborative use of geospatial data.
https://geonode.org/
Other
0 stars 0 forks source link

Task: Check accessablility/permissions for zalf geonode api endpoints #67

Open mwallschlaeger opened 4 months ago

mwallschlaeger commented 4 months ago

in process of adding more fields to the geonode data model we added api endpoints. we need to check access permissions for this new endpoints:

router.register(r"licenses", views.LicenseViewSet, "licenses")
router.register(r"relationtypes", views.RelationTypeViewSet, "relationtypes")
router.register(r"relatedidentifiertypes", views.RelatedIdentifierTypeViewSet, "relatedidentifiertypes")
router.register(r"relatedidentifiers", views.RelatedIdentifierViewSet, "relatedidentifiers")
router.register(r"fundingreferences", views.FundingReferenceViewSet, "fundingreferences")
router.register(r"relatedprojects", views.RelatedProjectViewSet, "relatedprojects")
router.register(r"tkeywordlabels", views.ThesaurusKeywordLabelViewSet, "tkeywordlabels")