Files
spotlightcam/backend/src/constants/index.js
Radosław Gierwiało 0ca79b6c7d refactor(backend): add status constants and update code to use them
- 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
2025-11-23 22:40:54 +01:00

7 lines
127 B
JavaScript

const { MATCH_STATUS, SUGGESTION_STATUS } = require('./statuses');
module.exports = {
MATCH_STATUS,
SUGGESTION_STATUS,
};