Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

question.js 296B

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