Skip to content

Commit

Permalink
Add default_password to account_list subscription
Browse files Browse the repository at this point in the history
There is a problem with missing default pw on a prod instance. It seems
like export needs these data for exporting it. So I included it in the
subscription.
  • Loading branch information
reiterl committed Sep 23, 2024
1 parent 0db6a3a commit ef418f1
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,8 @@ export class UserRepositoryService extends BaseRepository<ViewUser, User> {

const accountListFields: TypedFieldset<User> = filterableListFields.concat([
`committee_ids`,
`committee_management_ids`
`committee_management_ids`,
`default_password`
]);

const participantListFieldsMinimal: TypedFieldset<User> = listFields.concat([`meeting_user_ids`]);
Expand Down

0 comments on commit ef418f1

Please sign in to comment.