summaryrefslogtreecommitdiff
path: root/config
diff options
context:
space:
mode:
authorDmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>2013-11-19 16:14:48 +0200
committerDmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>2013-11-19 16:14:56 +0200
commitbd20ec1a3415a9f945b5052a8f0f83cbd2806837 (patch)
treea9717f3c7b2d16de2a884f40be016d794b1ee2ec /config
parent4cac195a0eab44e092c4bb02e7a5f2aaae6766e3 (diff)
downloadgitlab-ce-bd20ec1a3415a9f945b5052a8f0f83cbd2806837.tar.gz
Remove file from repository feature
After click on remove file button you will be asked for commit message via modal window. After submitting modal form file will be removed from repository Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
Diffstat (limited to 'config')
-rw-r--r--config/routes.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/config/routes.rb b/config/routes.rb
index 06e8fddf705..d89fc20c6c9 100644
--- a/config/routes.rb
+++ b/config/routes.rb
@@ -173,7 +173,7 @@ Gitlab::Application.routes.draw do
end
scope module: :projects do
- resources :blob, only: [:show], constraints: {id: /.+/}
+ resources :blob, only: [:show, :destroy], constraints: {id: /.+/}
resources :raw, only: [:show], constraints: {id: /.+/}
resources :tree, only: [:show], constraints: {id: /.+/, format: /(html|js)/ }
resources :edit_tree, only: [:show, :update], constraints: {id: /.+/}, path: 'edit'