Skip to content

Commit 77a7719

Browse files
committed
change storage api tags
1 parent 19449af commit 77a7719

File tree

4 files changed

+8
-8
lines changed

4 files changed

+8
-8
lines changed

server/docs/docs.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -348,7 +348,7 @@ const docTemplate = `{
348348
"application/json"
349349
],
350350
"tags": [
351-
"Storage"
351+
"API"
352352
],
353353
"summary": "Get storage configuration settings",
354354
"responses": {
@@ -394,7 +394,7 @@ const docTemplate = `{
394394
"application/json"
395395
],
396396
"tags": [
397-
"Storage"
397+
"API"
398398
],
399399
"summary": "Update storage configuration settings",
400400
"parameters": [

server/docs/swagger.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -341,7 +341,7 @@
341341
"application/json"
342342
],
343343
"tags": [
344-
"Storage"
344+
"API"
345345
],
346346
"summary": "Get storage configuration settings",
347347
"responses": {
@@ -387,7 +387,7 @@
387387
"application/json"
388388
],
389389
"tags": [
390-
"Storage"
390+
"API"
391391
],
392392
"summary": "Update storage configuration settings",
393393
"parameters": [

server/docs/swagger.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -581,7 +581,7 @@ paths:
581581
- ApiKeyAuth: []
582582
summary: Get storage configuration settings
583583
tags:
584-
- Storage
584+
- API
585585
post:
586586
consumes:
587587
- application/json
@@ -647,7 +647,7 @@ paths:
647647
- ApiKeyAuth: []
648648
summary: Update storage configuration settings
649649
tags:
650-
- Storage
650+
- API
651651
/stream:
652652
get:
653653
description: Multi usage endpoint.

server/web/api/storage.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ import (
1111
// GetStorageSettings godoc
1212
// @Summary Get storage configuration settings
1313
// @Description Retrieves the current storage preferences for settings and viewed history
14-
// @Tags Storage
14+
// @Tags API
1515
// @Accept json
1616
// @Produce json
1717
// @Security ApiKeyAuth
@@ -27,7 +27,7 @@ func GetStorageSettings(c *gin.Context) {
2727
// UpdateStorageSettings godoc
2828
// @Summary Update storage configuration settings
2929
// @Description Updates the storage preferences for settings and viewed history. Requires application restart for changes to take effect.
30-
// @Tags Storage
30+
// @Tags API
3131
// @Accept json,x-www-form-urlencoded
3232
// @Produce json
3333
// @Security ApiKeyAuth

0 commit comments

Comments
 (0)