diff options
author | Martin Wortschack <mwortschack@gitlab.com> | 2018-09-19 12:57:14 +0200 |
---|---|---|
committer | Martin Wortschack <mwortschack@gitlab.com> | 2018-09-19 12:57:14 +0200 |
commit | df9cb93091838b6c4661c974436ce9120d9b1983 (patch) | |
tree | 525149a1e0789640c1f58f3542f8fbfed558097c /app/controllers/concerns | |
parent | 0df11843bf014711cbefe92a8ad76cff731c4eb0 (diff) | |
download | gitlab-ce-df9cb93091838b6c4661c974436ce9120d9b1983.tar.gz |
Add empty controller actions and utilize referer_path helper
Diffstat (limited to 'app/controllers/concerns')
-rw-r--r-- | app/controllers/concerns/internal_redirect.rb | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/app/controllers/concerns/internal_redirect.rb b/app/controllers/concerns/internal_redirect.rb index 10b9852e329..6ac9e860437 100644 --- a/app/controllers/concerns/internal_redirect.rb +++ b/app/controllers/concerns/internal_redirect.rb @@ -36,4 +36,10 @@ module InternalRedirect path_with_query = [uri.path, uri.query].compact.join('?') [path_with_query, uri.fragment].compact.join("#") end + + def referer_path(request) + return unless request.referer.presence + + URI(request.referer).path + end end |