aboutsummaryrefslogtreecommitdiff
path: root/docs/docs.go
diff options
context:
space:
mode:
authorArda Serdar Pektezol <1669855+pektezol@users.noreply.github.com>2023-06-29 19:40:07 +0300
committerArda Serdar Pektezol <1669855+pektezol@users.noreply.github.com>2023-06-29 19:40:07 +0300
commitf3b4838e255745cdc3dec368ed29e5b321dedc8b (patch)
treeae634de28ac524a022ca702009b6625940380927 /docs/docs.go
parentdocs: fix delete map summary (diff)
downloadlphub-f3b4838e255745cdc3dec368ed29e5b321dedc8b.tar.gz
lphub-f3b4838e255745cdc3dec368ed29e5b321dedc8b.tar.bz2
lphub-f3b4838e255745cdc3dec368ed29e5b321dedc8b.zip
docs: add jwt token requirements
Former-commit-id: e5b56433686e2180a99293f0ddf339e70b304c67
Diffstat (limited to 'docs/docs.go')
-rw-r--r--docs/docs.go21
1 files changed, 21 insertions, 0 deletions
diff --git a/docs/docs.go b/docs/docs.go
index 8affdab..9368c2c 100644
--- a/docs/docs.go
+++ b/docs/docs.go
@@ -450,6 +450,13 @@ const docTemplate = `{
450 "summary": "Edit map summary with specified map id.", 450 "summary": "Edit map summary with specified map id.",
451 "parameters": [ 451 "parameters": [
452 { 452 {
453 "type": "string",
454 "description": "JWT Token",
455 "name": "Authorization",
456 "in": "header",
457 "required": true
458 },
459 {
453 "type": "integer", 460 "type": "integer",
454 "description": "Map ID", 461 "description": "Map ID",
455 "name": "id", 462 "name": "id",
@@ -503,6 +510,13 @@ const docTemplate = `{
503 "summary": "Create map summary with specified map id.", 510 "summary": "Create map summary with specified map id.",
504 "parameters": [ 511 "parameters": [
505 { 512 {
513 "type": "string",
514 "description": "JWT Token",
515 "name": "Authorization",
516 "in": "header",
517 "required": true
518 },
519 {
506 "type": "integer", 520 "type": "integer",
507 "description": "Map ID", 521 "description": "Map ID",
508 "name": "id", 522 "name": "id",
@@ -556,6 +570,13 @@ const docTemplate = `{
556 "summary": "Delete map summary with specified map id.", 570 "summary": "Delete map summary with specified map id.",
557 "parameters": [ 571 "parameters": [
558 { 572 {
573 "type": "string",
574 "description": "JWT Token",
575 "name": "Authorization",
576 "in": "header",
577 "required": true
578 },
579 {
559 "type": "integer", 580 "type": "integer",
560 "description": "Map ID", 581 "description": "Map ID",
561 "name": "id", 582 "name": "id",