Added Measurements input
This commit is contained in:
parent
ba17d57987
commit
98a86ca6a8
12 changed files with 337 additions and 10 deletions
14
lib/route.js
14
lib/route.js
|
|
@ -89,4 +89,18 @@ FlowRouter.route('/logEntry', {
|
|||
action() {
|
||||
this.render('MainLayout', { main: 'logEntry'});
|
||||
}
|
||||
});
|
||||
|
||||
FlowRouter.route('/measurements', {
|
||||
name: 'measurements',
|
||||
action() {
|
||||
this.render('MainLayout', { main: 'measurements'});
|
||||
}
|
||||
});
|
||||
|
||||
FlowRouter.route('/measLogEntry', {
|
||||
name: 'measLogEntry',
|
||||
action() {
|
||||
this.render('MainLayout', { main: 'measLogEntry'});
|
||||
}
|
||||
});
|
||||
Loading…
Add table
Add a link
Reference in a new issue