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