Unify permission names
Sometimes there is used edit
and sometimes change
, Django itself uses change
.
Activity
-
Newest first Oldest first
-
Show all activity Show comments only Show history only
- Owner
Mind that there is a clear distinction in terminology:
change
means any act of updating data, whereasedit
means the action of editing data in a (model) form. Collapse replies - Author Owner
Interesting theory. I can learn something new again and again ;-).
Edited by Jonathan Weth - Owner
Well at least it would be consistent with the semantics of the
editable
attribute onModelField
.
- Author Owner
Some things are definitely wrong:
# Create group type create_group_type_predicate = has_person & ( has_global_perm("core.create_grouptype") | has_object_perm("core.change_grouptype") ) add_perm("core.create_grouptype", create_group_type_predicate)
should be
# Create group type create_group_type_predicate = has_person & ( has_global_perm("core.add_grouptype") | has_object_perm("core.add_grouptype") ) add_perm("core.create_grouptype", create_group_type_predicate)
- Nik | Klampfradler assigned to @yuha
assigned to @yuha
- Hangzhi Yu created merge request !707 (merged) to address this issue
created merge request !707 (merged) to address this issue
- Hangzhi Yu mentioned in merge request !707 (merged)
mentioned in merge request !707 (merged)
- Jonathan Weth added part::backend prio::1 type::bug labels
added part::backend prio::1 type::bug labels
- Tom Teichler assigned to @debdolph and unassigned @yuha
- Tom Teichler mentioned in merge request AlekSIS-App-Alsijil!256 (closed)
mentioned in merge request AlekSIS-App-Alsijil!256 (closed)
- Tom Teichler mentioned in merge request AlekSIS-App-Resint!32 (closed)
mentioned in merge request AlekSIS-App-Resint!32 (closed)
- Tom Teichler mentioned in merge request AlekSIS-App-Chronos!233 (closed)
mentioned in merge request AlekSIS-App-Chronos!233 (closed)
- Jonathan Weth closed with merge request !707 (merged)
closed with merge request !707 (merged)
- Jonathan Weth mentioned in commit 2894ffb0
mentioned in commit 2894ffb0