Last change
on this file since 13365 was
12560,
checked in by dglaser, 9 years ago
|
#2388:
HeuristicLab.Services.WebApp-3.3:
HeuristicLab.Services.WebApp.Statistics-3.3:
|
File size:
664 bytes
|
Rev | Line | |
---|
[12560] | 1 | (function () {
|
---|
| 2 | var module = appStatisticsPlugin.getAngularModule();
|
---|
| 3 | var apiUrl = 'api/Statistics/Group/';
|
---|
| 4 | module.factory('app.statistics.groupService',
|
---|
| 5 | ['$resource', function ($resource) {
|
---|
| 6 | return $resource(apiUrl + ':action', { id: '@id', page: '@page', size: '@size', start: '@start', end: '@end' }, {
|
---|
| 7 | getGroupDetails: { method: 'GET', params: { action: 'GetGroupDetails' } },
|
---|
| 8 | getGroups: { method: 'GET', params: { action: 'GetGroups' } },
|
---|
| 9 | getGroupHistory: { method: 'GET', params: { action: 'GetGroupHistory' }, isArray: true }
|
---|
| 10 | });
|
---|
| 11 | }]
|
---|
| 12 | );
|
---|
| 13 | })(); |
---|
Note: See
TracBrowser
for help on using the repository browser.