11 lines
406 B
JavaScript
11 lines
406 B
JavaScript
const url = require('create-url').url;
|
|
|
|
module.exports = [
|
|
url('/total/', 'total', 'total'),
|
|
url('/total-by-course/', 'totalByCourse', 'totalByCourse'),
|
|
url('/total-table', 'totalTable', 'totalTable'),
|
|
url('/total-table-by-course', 'totalTableByCourse', 'totalTableByCourse'),
|
|
url('/histogram', 'histogram', 'histogram'),
|
|
url('/histogram-data', 'histogramData', 'histogramData'),
|
|
]
|