swagger doc add bearer auth

This commit is contained in:
renaldybrada
2026-02-18 10:28:16 +07:00
parent 4b09db2177
commit f150030eee
4 changed files with 39 additions and 2 deletions
+13 -1
View File
@@ -1384,5 +1384,17 @@
}
}
}
}
},
"securityDefinitions": {
"BearerAuth": {
"type": "apiKey",
"name": "Authorization",
"in": "header"
}
},
"security": [
{
"BearerAuth": []
}
]
}