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 223B

12345678910111213
  1. 'use strict'
  2. const Joi = require('joi')
  3. const userAuth = Joi.object({
  4. user_email: Joi.string(),
  5. created_at: Joi.date(),
  6. token: Joi.binary().allow(null)
  7. }).label('user_auth')
  8. module.exports = {
  9. userAuth
  10. }