You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

1234567891011
  1. const Schwifty = require('@hapipal/schwifty')
  2. const responseSchema = require('../schemas/responses')
  3. module.exports = class Response extends Schwifty.Model {
  4. static get tableName() {
  5. return 'responses'
  6. }
  7. static get joiSchema() {
  8. return responseSchema.single
  9. }
  10. }