Prettier!
This commit is contained in:
@@ -5,7 +5,7 @@ import { sign } from './jwt';
|
|||||||
export const getAuthenticationBundle = async (username: string, password: string) => {
|
export const getAuthenticationBundle = async (username: string, password: string) => {
|
||||||
const auth = await Auth.findByUsername(username).catch();
|
const auth = await Auth.findByUsername(username).catch();
|
||||||
const isAuthenticated = !!auth && (auth as AuthModel).authenticate(password);
|
const isAuthenticated = !!auth && (auth as AuthModel).authenticate(password);
|
||||||
const record = isAuthenticated ? (auth as AuthPrivate).record as string : null;
|
const record = isAuthenticated ? ((auth as AuthPrivate).record as string) : null;
|
||||||
const token = sign(record || undefined);
|
const token = sign(record || undefined);
|
||||||
return {
|
return {
|
||||||
record,
|
record,
|
||||||
|
|||||||
Reference in New Issue
Block a user