Skip to content

Commit

Permalink
remove security from /taxonomy endpoint (#249)
Browse files Browse the repository at this point in the history
  • Loading branch information
mauberti-bc authored Aug 26, 2024
1 parent f3bad73 commit 75f63fd
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 10 deletions.
6 changes: 1 addition & 5 deletions api/src/paths/taxonomy/taxon/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,7 @@ export const GET: Operation = [findTaxonBySearchTerms()];
GET.apiDoc = {
description: 'Find taxon records by search criteria.',
tags: ['taxonomy'],
security: [
{
Bearer: []
}
],
security: [],
parameters: [
{
description: 'Taxonomy search terms.',
Expand Down
6 changes: 1 addition & 5 deletions api/src/paths/taxonomy/taxon/tsn/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,11 +11,7 @@ export const GET: Operation = [getTaxonByTSN()];
GET.apiDoc = {
description: 'Get taxon records by TSN ids.',
tags: ['taxonomy'],
security: [
{
Bearer: []
}
],
security: [],
parameters: [
{
description: 'Taxon TSN ids.',
Expand Down

0 comments on commit 75f63fd

Please sign in to comment.