summaryrefslogtreecommitdiffstats
path: root/apps/sharebymail/js/settings-admin.js
diff options
context:
space:
mode:
Diffstat (limited to 'apps/sharebymail/js/settings-admin.js')
-rw-r--r--apps/sharebymail/js/settings-admin.js10
1 files changed, 9 insertions, 1 deletions
diff --git a/apps/sharebymail/js/settings-admin.js b/apps/sharebymail/js/settings-admin.js
index 7b431233032..35a0e9855ac 100644
--- a/apps/sharebymail/js/settings-admin.js
+++ b/apps/sharebymail/js/settings-admin.js
@@ -24,7 +24,15 @@ $(function() {
if ($(this).is(':checked')) {
status = 'yes';
}
- OC.AppConfig.setValue('sharebymail', 'sendpasswordmail', status);
+ OCP.AppConfig.setValue('sharebymail', 'sendpasswordmail', status);
+ });
+
+ $('#enforcePasswordProtection').on('change', function() {
+ var status = 'no';
+ if ($(this).is(':checked')) {
+ status = 'yes';
+ }
+ OCP.AppConfig.setValue('sharebymail', 'enforcePasswordProtection', status);
});
});