選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

response.js 295B

123456789101112
  1. const Schwifty = require('@hapipal/schwifty')
  2. const responseSchema = require('../schemas/response')
  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. }