Skip to content

Commit

Permalink
Merge branch 'main' into fix-renewal-form-endpoint
Browse files Browse the repository at this point in the history
  • Loading branch information
mwvolo authored Oct 21, 2024
2 parents b754c52 + 8ddc64f commit 40d91b7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion api/views.py
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ def errata_fields(request):
if request.GET.get('field', None) == 'resources':
for field, verbose in ERRATA_RESOURCES:
# This is not my favorite way to do this but we need to keep the data on existing errata
if field != 'OpenStax Concept Coach' and field != 'Rover by OpenStax':
if field != 'OpenStax Concept Coach' and field != 'Rover by OpenStax' and field != 'OpenStax Tutor':
response.append({'field': field, 'verbose': verbose})

return JsonResponse(response, safe=False)
Expand Down

0 comments on commit 40d91b7

Please sign in to comment.