Nelze vybrat více než 25 témat
Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.
| 123456789101112 |
- const Schwifty = require('@hapipal/schwifty');
- const Joi = require('joi');
-
- module.exports = class User extends Schwifty.Model {
- static get tableName() { return 'users' }
- static get joiSchema() {
- return Joi.object({
- id: Joi.number().required(),
- name: Joi.string().required()
- })
- }
- }
|