timers3000
Version:
Provides a graphical interface in your browser to create and manage incremental timers for your daily tasks.
14 lines (12 loc) • 397 B
JavaScript
var routes = require('../app/routes');
/**
* Configure the app routes
* @param {Object} app Express-app
*/
module.exports = function(app){
app.get('/', routes.timers);
app.get('/preferences', routes.preferences);
app.get('/changelog', routes.changelog);
app.get('/statistics/timer/:id', routes.timerStatistics);
app.get('/statistics/group/:id', routes.groupStatistics);
}