Use web_url for web_url_without_scheme.
- Previus version was still incorrect as it ignored cases where GitLab would be installed in a custom location. - This assumes that if this method can be calle, web_url will return a valid URL.
This commit is contained in:
parent
9393809066
commit
ee3046f9a9
1 changed files with 1 additions and 1 deletions
|
@ -202,7 +202,7 @@ class Project < ActiveRecord::Base
|
|||
end
|
||||
|
||||
def web_url_without_scheme
|
||||
[Gitlab.config.gitlab.host, path_with_namespace].join("/")
|
||||
web_url.split("://")[1]
|
||||
end
|
||||
|
||||
def build_commit_note(commit)
|
||||
|
|
Loading…
Reference in a new issue