summaryrefslogtreecommitdiffstats
path: root/src/main/resources/config
diff options
context:
space:
mode:
Diffstat (limited to 'src/main/resources/config')
-rw-r--r--src/main/resources/config/groupConfig.js11
-rw-r--r--src/main/resources/config/locationConfig.js11
2 files changed, 11 insertions, 11 deletions
diff --git a/src/main/resources/config/groupConfig.js b/src/main/resources/config/groupConfig.js
new file mode 100644
index 0000000..09adb0d
--- /dev/null
+++ b/src/main/resources/config/groupConfig.js
@@ -0,0 +1,11 @@
+angular.module('group').config(['formServiceProvider',
+ function groupConfig(formServiceProvider) {
+
+ // Define field for the TOTP code provided by the user
+ formServiceProvider.registerFieldType('GROUP', {
+ module : 'group',
+ controller : 'groupFieldController',
+ templateUrl : 'app/ext/bwlp/templates/groupField.html'
+ });
+
+ }]); \ No newline at end of file
diff --git a/src/main/resources/config/locationConfig.js b/src/main/resources/config/locationConfig.js
deleted file mode 100644
index 6074752..0000000
--- a/src/main/resources/config/locationConfig.js
+++ /dev/null
@@ -1,11 +0,0 @@
-angular.module('location').config(['formServiceProvider',
- function locationConfig(formServiceProvider) {
-
- // Define field for the TOTP code provided by the user
- formServiceProvider.registerFieldType('LOCATION', {
- module : 'location',
- controller : 'locationFieldController',
- templateUrl : 'app/ext/bwlp/templates/locationField.html'
- });
-
- }]); \ No newline at end of file