Last change
on this file was
12560,
checked in by dglaser, 9 years ago
|
#2388:
HeuristicLab.Services.WebApp-3.3:
HeuristicLab.Services.WebApp.Statistics-3.3:
|
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.