mirror of
https://github.com/standardnotes/server
synced 2026-07-14 00:01:54 -04:00
* wip: fix variable name * wip: remove redundant middleware in auth * fix: auth middleware refactor * fix(auth): fetching user for key params * fix(auth): specs * fix(auth): registering session controller endpoints
6 lines
114 B
TypeScript
6 lines
114 B
TypeScript
export type GetUserKeyParamsDTOV1Unchallenged = {
|
|
authenticated: boolean
|
|
email?: string
|
|
userUuid?: string
|
|
}
|