You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

authentication.js 244B

1234567891011121314
  1. 'use strict'
  2. const Joi = require('joi')
  3. const userAuth = Joi.object({
  4. user_email: Joi.string(),
  5. created_at: Joi.date(),
  6. updated_at: Joi.date(),
  7. saltedhash: Joi.string()
  8. }).label('user_auth')
  9. module.exports = {
  10. userAuth
  11. }