API: Correct event type in unassignUser

This commit is contained in:
Drew DeVault 2022-02-01 09:20:33 +01:00
parent c04b1050eb
commit 1e180da72c
1 changed files with 1 additions and 1 deletions

View File

@ -1313,7 +1313,7 @@ func (r *mutationResolver) UnassignUser(ctx context.Context, trackerID int, tick
) VALUES (
$1, $2, true
);
`, assignee.ID, model.EVENT_ASSIGNED_USER)
`, assignee.ID, model.EVENT_UNASSIGNED_USER)
if err != nil {
panic(err)
}