complete: complete login process

This commit is contained in:
2025-05-27 23:06:37 +07:00
parent 90302eab6c
commit ab84abf366
5 changed files with 50 additions and 32 deletions

View File

@ -0,0 +1,6 @@
import Joi from "joi";
export const loginWithPasswordSchema = Joi.object({
identifier: Joi.string().required(),
password: Joi.string().required(),
});