mirror of
https://github.com/versia-pub/server.git
synced 2026-03-13 22:09:16 +01:00
fix(api): 🐛 Add tags to all API routes that were missing one
This commit is contained in:
parent
d75254fc71
commit
cd4cfa6a70
17 changed files with 22 additions and 0 deletions
|
|
@ -15,6 +15,7 @@ export default (plugin: PluginType): void => {
|
|||
method: "get",
|
||||
path: "/api/v1/sso/{id}",
|
||||
summary: "Get linked account",
|
||||
tags: ["SSO"],
|
||||
middleware: [
|
||||
auth({
|
||||
auth: true,
|
||||
|
|
@ -93,6 +94,7 @@ export default (plugin: PluginType): void => {
|
|||
method: "delete",
|
||||
path: "/api/v1/sso/{id}",
|
||||
summary: "Unlink account",
|
||||
tags: ["SSO"],
|
||||
middleware: [
|
||||
auth({
|
||||
auth: true,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue