Add reimbursement form route and component

This commit is contained in:
2020-07-25 18:24:16 +02:00
parent 083334ed18
commit ef0fc11edf
8 changed files with 75 additions and 3 deletions
+6
View File
@@ -31,5 +31,11 @@ Router.map(function() {
});
this.route('budget', function() {
this.route('expenses');
this.route('reimbursements', function() {});
});
this.route('reimbursements', function() {
this.route('new');
});
});