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