diff options
author | Sean McGivern <sean@gitlab.com> | 2017-08-30 13:33:39 +0100 |
---|---|---|
committer | Sean McGivern <sean@gitlab.com> | 2017-08-30 14:32:02 +0100 |
commit | b9d8946395ebe2b0d05e464e6a2af1181c7f1b90 (patch) | |
tree | a87957b03646fe6ac3a292a07269e3937dad574c /lib/api/branches.rb | |
parent | 07a7801c03ec6f5bccd517c38beaec426c554e11 (diff) | |
download | gitlab-ce-b9d8946395ebe2b0d05e464e6a2af1181c7f1b90.tar.gz |
Don't use public_send in destroy_conditionally! helper
As we only override in two places, we could just ask for the value rather than
the method name.
Diffstat (limited to 'lib/api/branches.rb')
-rw-r--r-- | lib/api/branches.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/api/branches.rb b/lib/api/branches.rb index b87f7cdbad1..a989394ad91 100644 --- a/lib/api/branches.rb +++ b/lib/api/branches.rb @@ -130,7 +130,7 @@ module API commit = user_project.repository.commit(branch.dereferenced_target) - destroy_conditionally!(commit, last_update_field: :authored_date) do + destroy_conditionally!(commit, last_updated: commit.authored_date) do result = DeleteBranchService.new(user_project, current_user) .execute(params[:branch]) |