Skip to content
Snippets Groups Projects
Commit 8f75ab21 authored by Douwe Maan's avatar Douwe Maan
Browse files

Link Commits tab to current branch from Compare page.

parent 40c8295a
No related branches found
No related tags found
No related merge requests found
Loading
Loading
@@ -6,11 +6,12 @@ class Projects::CompareController < Projects::ApplicationController
before_action :authorize_download_code!
 
def index
@ref = Addressable::URI.unescape(params[:to])
end
 
def show
base_ref = Addressable::URI.unescape(params[:from])
head_ref = Addressable::URI.unescape(params[:to])
@ref = head_ref = Addressable::URI.unescape(params[:to])
 
compare_result = CompareService.new.execute(
current_user,
Loading
Loading
%ul.nav.nav-tabs
= nav_link(controller: [:commit, :commits]) do
= link_to namespace_project_commits_path(@project.namespace, @project, @repository.root_ref) do
= link_to namespace_project_commits_path(@project.namespace, @project, @ref || @repository.root_ref) do
Commits
%span.badge= number_with_precision(@repository.commit_count, precision: 0, delimiter: ',')
= nav_link(controller: :compare) do
Loading
Loading
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment