aboutsummaryrefslogtreecommitdiffstats
path: root/web/js/validation_rules.js
diff options
context:
space:
mode:
Diffstat (limited to 'web/js/validation_rules.js')
-rw-r--r--web/js/validation_rules.js8
1 files changed, 7 insertions, 1 deletions
diff --git a/web/js/validation_rules.js b/web/js/validation_rules.js
index 5295a53ca..e6d745336 100644
--- a/web/js/validation_rules.js
+++ b/web/js/validation_rules.js
@@ -1,5 +1,11 @@
validation_rules = {
title: { required: true },
detail: { required: true },
- update: { required: true }
+ update: { required: true },
+ password_register: {
+ remote: {
+ url: '/auth/common_password',
+ type: 'post'
+ }
+ }
};