/** * Created by WebStorm. * User: martin * Date: 25/05/2020 * Time: 13:36 */ const apply = require('../controllers/apply.controller'); module.exports = (app) => { app.route('/apply/:id') .put(apply.markApplied); };