ChiamakaObitube/AutoMart

View on GitHub
server/database/objectDatabase/flag.js

Summary

Maintainability
A
0 mins
Test Coverage
const flags = [{
  id: 1,
  carId: 4,
  reason: 'Ridiculous pricing',
  description: 'I have never seen this car at this price',
  reportedBy: 2,
  createdOn: Date(),
},
{
  id: 2,
  carId: 3,
  reason: 'Weird Demands',
  description: 'Seller is not genuinue with the ad',
  reportedBy: 5,
  createdOn: Date(),
},
];

export default flags;