Skip to content

Commit

Permalink
made sure that tags in the openapi definition are more sensible
Browse files Browse the repository at this point in the history
  • Loading branch information
CommanderStorm committed Aug 13, 2024
1 parent b512315 commit 6720338
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 6 deletions.
15 changes: 10 additions & 5 deletions data/output/openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -259,7 +259,7 @@ paths:
'414':
description: The uri you are trying to request is unreasonably long. Search querys dont have thousands of chars..
tags:
- core
- locations
'/api/locations/{id}/nearby':
get:
operationId: nearby
Expand Down Expand Up @@ -308,6 +308,8 @@ paths:
application/json:
schema:
$ref: '#/components/schemas/NearbyLocationsResponse'
tags:
- locations
'/api/locations/{id}':
get:
operationId: details
Expand Down Expand Up @@ -754,7 +756,7 @@ paths:
examples:
- Not found
tags:
- core
- locations
/api/calendar:
post:
operationId: calendar
Expand All @@ -766,7 +768,6 @@ paths:
If successful, returns additional entries in the requested time span.
requestBody:
description: null
required: true
content:
application/json:
Expand Down Expand Up @@ -2427,14 +2428,18 @@ components:
lat: 48.2528223347355
lon: 11.5240016913201
tags:
- name: core
description: API to access/search for location information
- name: calendar
description: APIs to access calendar-data
- name: cdn
description: Images for some of the rooms
- name: feedback
description: APIs to give feedback
- name: health
description: endpoints used to check the health of our components
- name: locations
description: API to access/search for location information
- name: maps
description: APIs to access map-data
externalDocs:
description: Visit our Github Page for more in-depth documentation
url: 'https://github.com/TUM-Dev/navigatum'
Expand Down
1 change: 0 additions & 1 deletion webclient/app/api_types/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -835,7 +835,6 @@ export type operations = {
* If successful, returns additional entries in the requested time span.
*/
calendar: {
/** @description null */
readonly requestBody: {
readonly content: {
readonly "application/json": {
Expand Down

0 comments on commit 6720338

Please sign in to comment.