chore: better Prettier config for easier reviews

This commit is contained in:
2023-10-23 23:33:39 +02:00
parent a8781724d4
commit 71ea41695f
209 changed files with 4093 additions and 4114 deletions

View File

@ -1,18 +1,18 @@
import type { Handler } from '../../handler'
import { userExample, userSettingsExample } from '../user'
import type { Handler } from "../../handler"
import { userExample, userSettingsExample } from "../user"
export const getUsersCurrentHandler: Handler = {
method: 'GET',
url: '/users/current',
method: "GET",
url: "/users/current",
response: {
statusCode: 200,
body: {
user: {
...userExample,
settings: userSettingsExample,
currentStrategy: 'local',
strategies: ['local']
}
}
}
currentStrategy: "local",
strategies: ["local"],
},
},
},
}