|
3 | 3 | "paths": { |
4 | 4 | "/profiles": { |
5 | 5 | "put": { |
6 | | - "operationId": "ProfilesController_submit", |
| 6 | + "operationId": "submitProfile", |
7 | 7 | "parameters": [], |
8 | 8 | "requestBody": { |
9 | 9 | "required": true, |
|
32 | 32 | ] |
33 | 33 | } |
34 | 34 | }, |
35 | | - "/profiles/user/{id}": { |
36 | | - "get": { |
37 | | - "operationId": "ProfilesController_tempGetProfile", |
38 | | - "parameters": [ |
39 | | - { |
40 | | - "name": "id", |
41 | | - "required": true, |
42 | | - "in": "path", |
43 | | - "schema": { |
44 | | - "type": "string" |
45 | | - } |
46 | | - } |
47 | | - ], |
48 | | - "responses": { |
49 | | - "200": { |
50 | | - "description": "" |
51 | | - } |
52 | | - }, |
53 | | - "tags": [ |
54 | | - "Profiles" |
55 | | - ] |
56 | | - } |
57 | | - }, |
58 | 35 | "/accounts/identify": { |
59 | 36 | "get": { |
60 | | - "operationId": "AccountsController_identify", |
| 37 | + "operationId": "identifyAccount", |
61 | 38 | "parameters": [], |
62 | 39 | "responses": { |
63 | 40 | "200": { |
|
81 | 58 | }, |
82 | 59 | "/accounts": { |
83 | 60 | "get": { |
84 | | - "operationId": "AccountsController_findAll", |
| 61 | + "operationId": "getAllAccounts", |
85 | 62 | "parameters": [], |
86 | 63 | "responses": { |
87 | 64 | "200": { |
|
106 | 83 | ] |
107 | 84 | }, |
108 | 85 | "put": { |
109 | | - "operationId": "AccountsController_create", |
| 86 | + "operationId": "createAccount", |
110 | 87 | "parameters": [], |
111 | 88 | "requestBody": { |
112 | 89 | "required": true, |
|
140 | 117 | }, |
141 | 118 | "/accounts/{id}": { |
142 | 119 | "delete": { |
143 | | - "operationId": "AccountsController_delete", |
| 120 | + "operationId": "deleteAccount", |
144 | 121 | "parameters": [ |
145 | 122 | { |
146 | 123 | "name": "id", |
|
164 | 141 | ] |
165 | 142 | }, |
166 | 143 | "patch": { |
167 | | - "operationId": "AccountsController_update", |
| 144 | + "operationId": "updateAccount", |
168 | 145 | "parameters": [ |
169 | 146 | { |
170 | 147 | "name": "id", |
|
204 | 181 | }, |
205 | 182 | "/accounts/{id}/jwt": { |
206 | 183 | "patch": { |
207 | | - "operationId": "AccountsController_resetJwtKey", |
| 184 | + "operationId": "resetAccountJwtKey", |
208 | 185 | "parameters": [ |
209 | 186 | { |
210 | 187 | "name": "id", |
|
232 | 209 | ] |
233 | 210 | }, |
234 | 211 | "get": { |
235 | | - "operationId": "AccountsController_generateJwt", |
| 212 | + "operationId": "generateAccountJwt", |
236 | 213 | "parameters": [ |
237 | 214 | { |
238 | 215 | "name": "id", |
|
262 | 239 | }, |
263 | 240 | "/admin/login": { |
264 | 241 | "post": { |
265 | | - "operationId": "AdminController_login", |
| 242 | + "operationId": "loginAdmin", |
266 | 243 | "parameters": [], |
267 | 244 | "requestBody": { |
268 | 245 | "required": true, |
|
296 | 273 | }, |
297 | 274 | "/admin/identify": { |
298 | 275 | "get": { |
299 | | - "operationId": "AdminController_identify", |
| 276 | + "operationId": "identifyAdmin", |
300 | 277 | "parameters": [], |
301 | 278 | "responses": { |
302 | 279 | "200": { |
|
320 | 297 | }, |
321 | 298 | "/users/{id}": { |
322 | 299 | "get": { |
323 | | - "operationId": "UsersController_find", |
| 300 | + "operationId": "getUser", |
324 | 301 | "parameters": [ |
325 | 302 | { |
326 | 303 | "name": "id", |
|
362 | 339 | }, |
363 | 340 | "/users/{id}/capes": { |
364 | 341 | "get": { |
365 | | - "operationId": "UsersController_findCapes", |
| 342 | + "operationId": "getUserCapes", |
366 | 343 | "parameters": [ |
367 | 344 | { |
368 | 345 | "name": "id", |
|
401 | 378 | }, |
402 | 379 | "/users/{id}/capes/update": { |
403 | 380 | "get": { |
404 | | - "operationId": "UsersController_updateUserCapes", |
| 381 | + "operationId": "updateUserCapes", |
405 | 382 | "parameters": [ |
406 | 383 | { |
407 | 384 | "name": "id", |
|
436 | 413 | "contact": {} |
437 | 414 | }, |
438 | 415 | "tags": [], |
439 | | - "servers": [], |
| 416 | + "servers": [ |
| 417 | + { |
| 418 | + "url": "https://api.namet.ag", |
| 419 | + "description": "Production API" |
| 420 | + } |
| 421 | + ], |
440 | 422 | "components": { |
441 | 423 | "schemas": { |
442 | 424 | "SubmitProfileDto": { |
|
0 commit comments