fix(api): 🐛 Add tags to all API routes that were missing one

This commit is contained in:
Jesse Wierzbinski 2025-03-28 22:12:07 +01:00
parent d75254fc71
commit cd4cfa6a70
No known key found for this signature in database
17 changed files with 22 additions and 0 deletions

View file

@ -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,