[refs #96] fixed commit subscribing
This commit is contained in:
parent
da0d791f74
commit
eaa6a46a43
|
@ -27,6 +27,6 @@ class CommitSubscribesController < ApplicationController
|
||||||
|
|
||||||
def find_commit
|
def find_commit
|
||||||
@commit = @project.git_repository.commit(params[:commit_id])
|
@commit = @project.git_repository.commit(params[:commit_id])
|
||||||
@options = {:project_id => @project.id, :subscribeable_id => @commit.id, :subscribeable_type => @commit.class.name, :user_id => current_user.id}
|
@options = {:project_id => @project.id, :subscribeable_id => @commit.id.hex, :subscribeable_type => @commit.class.name, :user_id => current_user.id}
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
Loading…
Reference in New Issue