All files / src/models ticket.ts

100% Statements 11/11
100% Branches 0/0
100% Functions 2/2
100% Lines 11/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 46 47 48 49 506x 6x                   6x                                           16x 16x 16x         6x 6x   6x 6x   38x      
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
  },
 
  orderId: {
    type: String
  }
}, {
  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)
  }
}