UI Admin aproape finalizat

This commit is contained in:
andrei-mihnea-cerbu
2024-04-03 02:09:12 +03:00
parent fb957a6f97
commit af8c295d75
134 changed files with 5014 additions and 1045 deletions
+8
View File
@@ -0,0 +1,8 @@
const Joi = require('joi');
const loginModel = Joi.object({
email: Joi.string().email().required(),
password: Joi.string().required()
});
module.exports = loginModel;
+7
View File
@@ -0,0 +1,7 @@
const loginModelSchema = require('./login');
const schemas = {
loginModelSchema
}
module.exports = schemas;