Free cookie consent management tool by TermsFeed Policy Generator

source: branches/2817-BinPackingSpeedup/HeuristicLab.Services.WebApp.Statistics/3.3/WebApp/services/exceptionService.js @ 15303

Last change on this file since 15303 was 12560, checked in by dglaser, 9 years ago

#2388:

HeuristicLab.Services.WebApp-3.3:

  • updated about page

HeuristicLab.Services.WebApp.Statistics-3.3:

  • added missing files
File size: 439 bytes
Line 
1(function () {
2    var module = appStatisticsPlugin.getAngularModule();
3    var apiUrl = 'api/Statistics/Exception/';
4    module.factory('app.statistics.exceptionService',
5        ['$resource', function ($resource) {
6            return $resource(apiUrl + ':action', { page: '@page', size: '@size'}, {
7                getExceptions: { method: 'GET', params: { action: 'GetExceptions' } }
8            });
9        }]
10    );
11})();
Note: See TracBrowser for help on using the repository browser.