Commit 5e1c63d3 authored by Robert Speicher's avatar Robert Speicher

Move load_refs out of ApplicationController and into CommitsController

That was the only place it was used.
parent a9f275bc
......@@ -120,16 +120,6 @@ class ApplicationController < ActionController::Base
end
end
def load_refs
if params[:ref].blank?
@branch = params[:branch].blank? ? nil : params[:branch]
@tag = params[:tag].blank? ? nil : params[:tag]
@ref = @branch || @tag || @project.try(:default_branch) || 'master'
else
@ref = params[:ref]
end
end
def render_404
render file: File.join(Rails.root, "public", "404"), layout: false, status: "404"
end
......
......@@ -59,7 +59,7 @@ class CommitsController < ApplicationController
def patch
@commit = project.commit(params[:id])
send_data(
@commit.to_patch,
type: "text/plain",
......@@ -67,4 +67,16 @@ class CommitsController < ApplicationController
filename: (@commit.id.to_s + ".patch")
)
end
protected
def load_refs
if params[:ref].blank?
@branch = params[:branch].blank? ? nil : params[:branch]
@tag = params[:tag].blank? ? nil : params[:tag]
@ref = @branch || @tag || @project.try(:default_branch) || 'master'
else
@ref = params[:ref]
end
end
end
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment