We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 33eba8f commit 1514673Copy full SHA for 1514673
src/controllers/Auth/service.ts
@@ -41,7 +41,8 @@ interface EmailAttributes {
41
42
class AuthService {
43
/**
44
- * Sign Up
+ *
45
+ * @param formData
46
*/
47
public static async signUp(formData: UserAttributes) {
48
const generateToken = {
@@ -91,7 +92,8 @@ class AuthService {
91
92
}
93
94
- * Sign In
95
96
97
98
public static async signIn(formData: LoginAttributes) {
99
const { email, password } = formData
@@ -144,7 +146,8 @@ class AuthService {
144
146
145
147
148
- * Profile
149
150
+ * @param token
151
152
public static async profile(token: TokenAttributes) {
153
if (isObject(token?.data)) {
0 commit comments