import ngModule from '../module'; export default class Controller { constructor($scope) { this.$ = $scope; this.ticketSelected = null; this.filter = { include: [ { relation: 'client', scope: { fields: ['name'] } }, { relation: 'worker', scope: { fields: ['firstName', 'name'] } }, { relation: 'claimState', scope: { fields: ['description'] } } ], order: 'claimStateFk ASC, created DESC' }; } } Controller.$inject = ['$scope']; ngModule.component('vnClaimIndex', { template: require('./index.html'), controller: Controller });