Browse Source

Plugin directory is configurable (#24007).

Patch by Go MAEDA.

git-svn-id: http://svn.redmine.org/redmine/trunk@16654 e93f8b46-1217-0410-a6f0-8f06a7374b81
tags/3.4.0
Jean-Philippe Lang 7 years ago
parent
commit
68047fde6f
1 changed files with 1 additions and 1 deletions
  1. 1
    1
      config/routes.rb

+ 1
- 1
config/routes.rb View File

@@ -378,7 +378,7 @@ Rails.application.routes.draw do

get 'robots.txt', :to => 'welcome#robots'

Dir.glob File.expand_path("plugins/*", Rails.root) do |plugin_dir|
Dir.glob File.expand_path("#{Redmine::Plugin.directory}/*", Rails.root) do |plugin_dir|
file = File.join(plugin_dir, "config/routes.rb")
if File.exists?(file)
begin

Loading…
Cancel
Save