| ... | @@ -97,12 +97,12 @@ class ApplicationController < ActionController::Base |
... | @@ -97,12 +97,12 @@ class ApplicationController < ActionController::Base |
|
|
end
|
|
end
|
|
|
|
|
|
|
|
def load_refs
|
|
def load_refs
|
|
|
unless params[:ref].blank?
|
|
if params[:ref].blank?
|
|
|
@ref = params[:ref]
|
|
|
|
|
else
|
|
|
|
|
@branch = params[:branch].blank? ? nil : params[:branch]
|
|
@branch = params[:branch].blank? ? nil : params[:branch]
|
|
|
@tag = params[:tag].blank? ? nil : params[:tag]
|
|
@tag = params[:tag].blank? ? nil : params[:tag]
|
|
|
@ref = @branch || @tag || @project.try(:default_branch) || Repository.default_ref
|
|
@ref = @branch || @tag || @project.try(:default_branch) || Repository.default_ref
|
|
|
|
else
|
|
|
|
@ref = params[:ref]
|
|
|
end
|
|
end
|
|
|
end
|
|
end
|
|
|
|
|
|
| ... | |
... | |
| ... | | ... | |