mirror of
https://github.com/YunoHost/yunohost.git
synced 2024-09-03 20:06:10 +02:00
appsv2/group question: don't include primary groups in choices
This commit is contained in:
parent
b7c5913683
commit
c179d4b88f
1 changed files with 1 additions and 1 deletions
|
@ -1359,7 +1359,7 @@ class GroupQuestion(Question):
|
|||
|
||||
super().__init__(question, context)
|
||||
|
||||
self.choices = list(user_group_list(short=True)["groups"])
|
||||
self.choices = list(user_group_list(short=True, include_primary_groups=False)["groups"])
|
||||
|
||||
def _human_readable_group(g):
|
||||
# i18n: visitors
|
||||
|
|
Loading…
Add table
Reference in a new issue