aboutsummaryrefslogtreecommitdiff
path: root/src/main/webapp/apps/core/CoreResources.js
diff options
context:
space:
mode:
Diffstat (limited to 'src/main/webapp/apps/core/CoreResources.js')
-rw-r--r--src/main/webapp/apps/core/CoreResources.js25
1 files changed, 0 insertions, 25 deletions
diff --git a/src/main/webapp/apps/core/CoreResources.js b/src/main/webapp/apps/core/CoreResources.js
deleted file mode 100644
index b258c85..0000000
--- a/src/main/webapp/apps/core/CoreResources.js
+++ /dev/null
@@ -1,25 +0,0 @@
-'use strict';
-
-function Person($resource) {
- return $resource('/resource/core/person/:uuid', {uuid: '@uuid'});
-}
-
-angular.module('person', ['ngResource']).factory('Person', Person);
-
-function Build($resource) {
- return $resource('/resource/core/build/:uuid', {uuid: '@uuid'});
-}
-
-angular.module('build', ['ngResource']).factory('Build', Build);
-
-function BuildParticipant($resource) {
- return $resource('/resource/core/build-participant/:uuid', {uuid: '@uuid'});
-}
-
-angular.module('buildParticipant', ['ngResource']).factory('BuildParticipant', BuildParticipant);
-
-function Badge($resource) {
- return $resource('/resource/core/badge/:uuid', {uuid: '@uuid'});
-}
-
-angular.module('badge', ['ngResource']).factory('Badge', Badge);