WIP: Reassigning posts from the modal

This commit is contained in:
Andrei Prigorshnev 2024-03-30 01:00:06 +04:00
parent cf0861d8c8
commit c2b5ca2fd4
No known key found for this signature in database
GPG Key ID: 185E0A5F45783902
1 changed files with 5 additions and 1 deletions

View File

@ -95,7 +95,11 @@ export default class AssignUserForm extends Component {
this.args.model.group_name = groupName; this.args.model.group_name = groupName;
if (this.editingTopicAssignments) { if (this.editingTopicAssignments) {
// fixme andrei implement const assignment = { username, groupName };
this.args.model.updatedPostAssignments.set(
this.selectedTargetId,
assignment
);
} }
} }