Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

123456789101112
  1. const Schwifty = require('@hapipal/schwifty')
  2. const Joi = require('joi')
  3. const surveyResponseSchema = require('../schemas/responses')
  4. module.exports = class ResponseKey extends Schwifty.Model {
  5. static get tableName() {
  6. return 'response_keys'
  7. }
  8. static get joiSchema() {
  9. return surveyResponseSchema.key
  10. }
  11. }