Changeset 12516 for branches/HiveStatistics/sources/HeuristicLab.Services.WebApp.Statistics/3.3/WebApp/services
- Timestamp:
- 06/25/15 18:34:40 (9 years ago)
- Location:
- branches/HiveStatistics/sources
- Files:
-
- 4 added
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/HiveStatistics/sources
- Property svn:mergeinfo changed
/trunk/sources merged: 12470-12476,12478-12482,12485,12488,12490-12494,12496-12497,12504,12506-12507,12509,12511-12512,12514
- Property svn:mergeinfo changed
-
branches/HiveStatistics/sources/HeuristicLab.Services.WebApp.Statistics/3.3
-
Property
svn:global-ignores
set to
obj
-
Property
svn:ignore
set to
bin
-
Property
svn:global-ignores
set to
-
branches/HiveStatistics/sources/HeuristicLab.Services.WebApp.Statistics/3.3/WebApp/services/statisticsService.js
r12477 r12516 4 4 module.factory('app.statistics.data.service', 5 5 ['$resource', function ($resource) { 6 return $resource(apiUrl + ':action', { id: '@id' }, { 6 return $resource(apiUrl + ':action', { id: '@id', page: '@page', size: '@size', states: '@states', expired: '@expired'}, { 7 getJob: { method: 'GET', params: { action: 'GetJob' } }, 7 8 getJobs: { method: 'GET', params: { action: 'GetJobs' }, isArray: true }, 9 getCompletedJobs: { method: 'GET', params: { action: 'GetCompletedJobs' }, isArray: true }, 10 getCompletedJobsByUserId: { method: 'GET', params: { action: 'GetCompletedJobsByUserId' }, isArray: true }, 11 getCompletedJobsCount: { method: 'GET', params: { action: 'GetCompletedJobsCount' } }, 12 getCompletedJobsCountByUserId: { method: 'GET', params: { action: 'GetCompletedJobsCountByUserId' } }, 8 13 getJobsByUserId: { method: 'GET', params: { action: 'GetJobsByUserId' }, isArray: true }, 9 getTasksByJobId: { method: 'GET', params: { action: 'GetTasksByJobId' }, isArray: true } 14 getTaskCountByJobId: { method: 'GET', params: { action: 'GetTaskCountByJobId' } }, 15 getTasksByJobId: { method: 'GET', params: { action: 'GetTasksByJobId' }, isArray: true }, 16 getJobTasksStatesByJobId: { method: 'GET', params: { action: 'GetJobTasksStatesByJobId' }, isArray: true }, 17 getClient: { method: 'GET', params: { action: 'GetClient' } }, 18 getClientCount: { method: 'GET', params: { action: 'GetClientCount' } }, 19 getClients: { method: 'GET', params: { action: 'GetClients' }, isArray: true }, 20 getTaskCountByClientId: { method: 'GET', params: { action: 'GetTaskCountByClientId' } }, 21 getTasksByClientId: { method: 'GET', params: { action: 'GetTasksByClientId' }, isArray: true }, 22 getJobTasksStatesByClientId: { method: 'GET', params: { action: 'GetJobTasksStatesByClientId' }, isArray: true }, 23 getClientHistory: { method: 'GET', params: { action: 'GetClientHistory' }, isArray: true }, 24 getUsers: { method: 'GET', params: { action: 'GetUsers' }, isArray: true }, 25 getUser: { method: 'GET', params: { action: 'GetUser' } } 10 26 }); 11 27 }]
Note: See TracChangeset
for help on using the changeset viewer.