- Create constants/statuses.js with MATCH_STATUS, SUGGESTION_STATUS - Update routes/dashboard.js to use MATCH_STATUS - Update routes/matches.js to use MATCH_STATUS - Update routes/events.js to use SUGGESTION_STATUS - Update services/matching.js to use SUGGESTION_STATUS - Update tests to use constants
7 lines
127 B
JavaScript
7 lines
127 B
JavaScript
const { MATCH_STATUS, SUGGESTION_STATUS } = require('./statuses');
|
|
|
|
module.exports = {
|
|
MATCH_STATUS,
|
|
SUGGESTION_STATUS,
|
|
};
|