From 497c88a81490232384ba85a8a0fd04b962d69c4d Mon Sep 17 00:00:00 2001 From: Carson Davis Date: Thu, 22 Feb 2024 13:49:50 -0600 Subject: [PATCH] add docstring for IndexingInstructionsView --- sde_collections/views.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/sde_collections/views.py b/sde_collections/views.py index 2a908281..5e815a3e 100644 --- a/sde_collections/views.py +++ b/sde_collections/views.py @@ -352,6 +352,10 @@ def post(self, request): class IndexingInstructionsView(APIView): + """ + Serves the name of the first curated collection to be indexed + """ + def get(self, request): curated_collections = Collection.objects.filter(workflow_status=WorkflowStatusChoices.CURATED)