cleaning a bunch of the auth stuff but not done

This commit is contained in:
talksik
2022-04-01 11:10:37 -04:00
parent 95fe01af03
commit 685c03e505
18 changed files with 554 additions and 678 deletions
@@ -0,0 +1,5 @@
import { User } from "../models/user.model";
export default class LoginResponse {
constructor(public jwtToken: string, public userDetails: User) {}
}