Skip to content

Commit

Permalink
pass all args to audited_changes super
Browse files Browse the repository at this point in the history
  • Loading branch information
zendesk-mattlefevre committed Nov 16, 2023
1 parent c85c1d0 commit 9a60c42
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions app/models/stage.rb
Original file line number Diff line number Diff line change
Expand Up @@ -220,8 +220,8 @@ def locked_by?(lock)

private

def audited_changes
super.merge(script_changes)
def audited_changes(...)
super.merge(**script_changes)
end

def script_changes
Expand Down
2 changes: 1 addition & 1 deletion plugins/env/decorators/project_decorator.rb
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ def environment_variable_group_ids=(*)
super
end

def audited_changes
def audited_changes(...)
super.merge(environment_variables_changes)
end

Expand Down

0 comments on commit 9a60c42

Please sign in to comment.