All files ticket.ts

72.72% Statements 8/11
100% Branches 0/0
50% Functions 1/2
72.72% Lines 8/11

Press n or j to go to the next uncovered block, b, p or k for the previous block.

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 461x 1x                   1x                                                 1x 1x   1x 1x   4x      
import mongoose, { ObjectId } from 'mongoose'
import { updateIfCurrentPlugin } from 'mongoose-update-if-current'
 
interface TicketAttributes {
  title: String;
  price: Number;
  owner: string;
  createdAt?: Date;
  updatedAt?: Date;
}
 
const ticketSchema = new mongoose.Schema({
  title: {
    type: String,
    required: true
  },
 
  price: {
    type: Number,
    required: true
  },
 
  owner: {
    type: mongoose.Schema.Types.ObjectId,
    required: true
  }
}, {
  toJSON: {
    transform (doc, ret) {
      ret.id = ret._id
      delete ret._id
      delete ret.password
    }
  }
})
 
ticketSchema.set('versionKey', 'version')
ticketSchema.plugin(updateIfCurrentPlugin)
 
export const TicketModel = mongoose.model('Ticket', ticketSchema)
export default class Ticket extends TicketModel {
  constructor(attributes: TicketAttributes) {
    super(attributes)
  }
}