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.
| 123456789101112 |
- const Schwifty = require('@hapipal/schwifty')
-
- const questionSchema = require('../schemas/questions')
-
- module.exports = class Question extends Schwifty.Model {
- static get tableName() {
- return 'questions'
- }
- static get joiSchema() {
- return questionSchema.single
- }
- }
|