mirror of
https://github.com/immich-app/immich.git
synced 2025-12-20 01:11:46 +03:00
refactor(server): standardize user controller (#3501)
* chore: remove redundant sortint * chore: standardize user controller * chore: open api * fix: web dtos
This commit is contained in:
@@ -48,11 +48,7 @@ function sortKeys<T>(obj: T): T {
|
||||
}
|
||||
|
||||
const patchOpenAPI = (document: OpenAPIObject) => {
|
||||
for (const [key, value] of Object.entries(document.paths)) {
|
||||
document.paths[key] = sortKeys(value);
|
||||
}
|
||||
document.paths = sortKeys(document.paths);
|
||||
|
||||
if (document.components?.schemas) {
|
||||
document.components.schemas = sortKeys(document.components.schemas);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user