797ace982f
Done so far Basic backend skeleton - technology choices - database migration outline - basic self hosting facade - basic REST outline - proof of concept for auth and privileges Basic frontend skeleton - technology choices - pretty robust frontend compilation - top navigation - proof of concept for registration form
13 lines
276 B
JavaScript
13 lines
276 B
JavaScript
'use strict';
|
|
|
|
class HistoryController {
|
|
constructor(topNavigationController) {
|
|
this.topNavigationController = topNavigationController;
|
|
}
|
|
|
|
listHistoryRoute() {
|
|
this.topNavigationController.activate('');
|
|
}
|
|
}
|
|
|
|
module.exports = HistoryController;
|