efcsydney/efcsydney-roster

View on GitHub
api/models/factory.js

Summary

Maintainability
A
0 mins
Test Coverage
class Factory {
  static createEvent(volunteerName, position, date) {
    return {
      volunteerName: '',
      position: { name: position.name },
      calendarDate: { date: date }
    };
  }
}

module.exports = {
  Factory
};