Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/config
diff options
context:
space:
mode:
authorGrzegorz Bizon <grzesiek.bizon@gmail.com>2016-01-14 14:12:05 +0300
committerGrzegorz Bizon <grzesiek.bizon@gmail.com>2016-01-14 14:48:17 +0300
commitbe764a3a20c7cecce2a047ddd46aff954c33b306 (patch)
tree5486e395de4ce9149666312287967336b3f4c531 /config
parent76e578fdfa1d9f52ae4d49d389089f67046f1a3e (diff)
Minor improvements in build arfifacts browser
Added also a `Gitlab::Ci::Build::Artifacts::Metadata::ParserError` exception class.
Diffstat (limited to 'config')
-rw-r--r--config/routes.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/config/routes.rb b/config/routes.rb
index d7fb7407794..0a29782f55b 100644
--- a/config/routes.rb
+++ b/config/routes.rb
@@ -609,8 +609,8 @@ Rails.application.routes.draw do
resource :artifacts, only: [] do
get :download
- get :browse, path: 'browse(/*path)', action: :browse, format: false
- get :file, path: 'file/*path', action: :file, format: false
+ get :browse, path: 'browse(/*path)', format: false
+ get :file, path: 'file/*path', format: false
end
end