Old post_receive_data interface used in services_controller.rb

Created by: Blackskyliner

Hi there, just got this bug while testing my gitlab_ci connection.

Completed 500 Internal Server Error in 148ms

NoMethodError (undefined method `post_receive_data' for #<Project:0x00000006d72020>):
  app/controllers/services_controller.rb:30:in `test'

I fixed it with this:


data = GitPushService.new.execute(project, current_user, commits.last.id, commits.first.id, "refs/heads/#{project.default_branch}");

instead of the old

data = project.post_receive_data(commits.last.id, commits.first.id, "refs/heads/#{project.default_branch}", current_user)

You can include this in your code-base, or someone could create a PR for this.

Greetz, Blackskyliner