aboutsummaryrefslogtreecommitdiffstats
path: root/web/js/validation_rules.js
blob: b8f09ef1ea81df2cac30bb016439da7d8c72292d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
    core_validation_rules = {
        title: { required: true },
        detail: { required: true },
        update: { required: true },
        password_register: {
          remote: {
            url: '/auth/common_password',
            type: 'post'
          }
        }
    };

    body_validation_rules = {};

    validation_rules = core_validation_rules;