Merge pull request #5561 from tsiegleauq/fix-csv

Adjust the example csv gender fields
This commit is contained in:
Emanuel Schütze 2020-09-16 14:21:56 +02:00 committed by GitHub
commit 909a7539c5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 18 additions and 2 deletions

View File

@ -80,7 +80,7 @@ export class UserImportListComponent extends BaseImportListComponentDirective<Us
'initialPassword', 'initialPassword',
null, null,
'mmustermann', 'mmustermann',
'm', 'male',
1.0 1.0
], ],
[ [
@ -100,7 +100,23 @@ export class UserImportListComponent extends BaseImportListComponentDirective<Us
'diverse', 'diverse',
2.0 2.0
], ],
[null, 'Julia', 'Bloggs', 'London', null, null, null, null, null, null, null, null, 'jbloggs', 'f', 1.5], [
null,
'Julia',
'Bloggs',
'London',
null,
null,
null,
null,
null,
null,
null,
null,
'jbloggs',
'female',
1.5
],
[null, null, 'Executive Board', null, null, null, null, null, null, 1, null, null, 'executive', null, 2.5] [null, null, 'Executive Board', null, null, null, null, null, null, 1, null, null, 'executive', null, 2.5]
]; ];
this.exporter.dummyCSVExport(this.headerRow, rows, `${this.translate.instant('participants-example')}.csv`); this.exporter.dummyCSVExport(this.headerRow, rows, `${this.translate.instant('participants-example')}.csv`);