Merge pull request #5598 from tsiegleauq/export-vote-weight

Export users with username and vote weight
This commit is contained in:
Emanuel Schütze 2020-10-06 22:31:03 +02:00 committed by GitHub
commit e6fc32b9b4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 1 deletions

View File

@ -293,7 +293,9 @@ export class UserListComponent extends BaseListViewComponent<ViewUser> implement
{ property: 'is_committee', label: 'Is a committee' },
{ property: 'default_password', label: 'Initial password' },
{ property: 'email' },
{ property: 'gender' }
{ property: 'username' },
{ property: 'gender' },
{ property: 'vote_weight', label: 'Vote weight' }
],
this.translate.instant('Participants') + '.csv'
);