Skip to content

Commit

Permalink
add docstring for IndexingInstructionsView
Browse files Browse the repository at this point in the history
  • Loading branch information
CarsonDavis committed Feb 22, 2024
1 parent 01e7922 commit 497c88a
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions sde_collections/views.py
Original file line number Diff line number Diff line change
Expand Up @@ -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)

Expand Down

0 comments on commit 497c88a

Please sign in to comment.