Skip to content

Commit

Permalink
Fix parameter order when closing (rejecting) a suggested change
Browse files Browse the repository at this point in the history
  • Loading branch information
susannasiebert committed Mar 19, 2020
1 parent 1911336 commit 00647ab
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions app/models/suggested_change.rb
Original file line number Diff line number Diff line change
Expand Up @@ -44,8 +44,8 @@ def close(closing_user, organization)
cmd = Actions::UpdateSuggestedChangeStatus.new(
self,
closing_user,
organization,
'closed'
'closed',
organization
)
cmd.perform
end
Expand Down

0 comments on commit 00647ab

Please sign in to comment.