annotate app/main/admin/_action/policy_update.lua @ 1234:8288027edb54
Added support for min_admission_time and max_admission_time
author |
bsw |
date |
Fri Dec 04 14:19:28 2015 +0100 (2015-12-04) |
parents |
f3d6d08b0125 |
children |
32cc544d5a5b |
rev |
line source |
bsw@194
|
1 local policy = Policy:by_id(param.get_id()) or Policy:new()
|
bsw@194
|
2
|
bsw@194
|
3 param.update(
|
bsw@194
|
4 policy,
|
bsw@194
|
5 "index", "name", "description", "active",
|
bsw@1234
|
6 "min_admission_time", "max_admission_time", "discussion_time", "verification_time", "voting_time",
|
bsw@194
|
7 "issue_quorum_num", "issue_quorum_den",
|
bsw@194
|
8 "initiative_quorum_num", "initiative_quorum_den",
|
bsw@282
|
9 "direct_majority_num", "direct_majority_den", "direct_majority_strict", "direct_majority_positive", "direct_majority_non_negative",
|
bsw@282
|
10 "indirect_majority_num", "indirect_majority_den", "indirect_majority_strict", "indirect_majority_positive", "indirect_majority_non_negative",
|
bsw@897
|
11 "no_reverse_beat_path", "no_multistage_majority", "polling"
|
bsw@194
|
12 )
|
bsw@194
|
13
|
bsw@1234
|
14 if policy.min_admission_time == "" then policy.min_admission_time = nil end
|
bsw@1234
|
15 if policy.max_admission_time == "" then policy.max_admission_time = nil end
|
bsw@901
|
16 if policy.discussion_time == "" then policy.discussion_time = nil end
|
bsw@901
|
17 if policy.verification_time == "" then policy.verification_time = nil end
|
bsw@901
|
18 if policy.voting_time == "" then policy.voting_time = nil end
|
bsw@897
|
19
|
bsw@194
|
20 policy:save()
|