Free cookie consent management tool by TermsFeed Policy Generator

source: branches/HiveStatistics/sources/HeuristicLab.Services.WebApp.Statistics/3.3/WebApp/services/groupService.js @ 12560

Last change on this file since 12560 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: 664 bytes
Line 
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.