Move states in separate files.

This commit is contained in:
Alexis Lahouze
2017-07-24 18:48:57 +02:00
parent 7b7f72bf1e
commit a7cee2891c
4 changed files with 41 additions and 26 deletions

View File

@ -0,0 +1,11 @@
// vim: set tw=80 ts=2 sw=2 sts=2 :
var operationsTmpl = require('./operations.html');
export const OperationListState = {
name: 'operations',
url: '/account/:accountId/operations',
templateUrl: operationsTmpl,
controller: 'OperationController',
controllerAs: 'operationsCtrl'
}