Вы не можете выбрать более 25 тем
Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.
| 123456789101112 |
- const Schwifty = require('@hapipal/schwifty')
- const Joi = require('joi')
- const { userAuth } = require('../schemas/authentication')
-
- module.exports = class Auth extends Schwifty.Model {
- static get tableName() {
- return 'authentication'
- }
- static get joiSchema() {
- return userAuth
- }
- }
|