"use strict"; (function () { 'use strict'; angular.module('dashboardModule') .factory('dashboardService', ['$resource', function ($resource) { var dashboardService = $resource('data/tickets.json', {}, { getList: { method: 'GET', isArray: false } }); return dashboardService; } ]) .factory('dashboardFeedService', ['$resource', function ($resource) { var dashboardFeedService = $resource('data/feeds.json', {}, { getList: { method: 'GET', isArray: false } }); return dashboardFeedService; } ]); }());