##// END OF EJS Templates
Fixed that project activity without parent hides system activities and removed duplicated code....
Fixed that project activity without parent hides system activities and removed duplicated code. git-svn-id: http://svn.redmine.org/redmine/trunk@14292 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r13773:a769aedb4492
r13910:48d40a8c8884
Show More
production.rb
25 lines | 879 B | text/x-ruby | RubyLexer
Jean-Philippe Lang
Merged rails-4.1 branch (#14534)....
r13100 Rails.application.configure do
# Settings specified here will take precedence over those in config/application.rb
# Code is not reloaded between requests.
Jean-Philippe Lang
Merged rails-3.2 branch....
r9346 config.cache_classes = true
Jean-Philippe Lang
Initial commit...
r2
Jean-Philippe Lang
Merged rails-4.1 branch (#14534)....
r13100 # Eager load code on boot. This eager loads most of Rails and
# your application in memory, allowing both threaded web servers
# and those relying on copy on write to perform better.
# Rake tasks automatically ignore this option for performance.
config.eager_load = true
Jean-Philippe Lang
Initial commit...
r2
Jean-Philippe Lang
Merged rails-4.1 branch (#14534)....
r13100 # Full error reports are disabled and caching is turned on.
config.consider_all_requests_local = false
Jean-Philippe Lang
Merged rails-3.2 branch....
r9346 config.action_controller.perform_caching = true
Jean-Philippe Lang
Initial commit...
r2
Jean-Philippe Lang
Merged rails-4.1 branch (#14534)....
r13100 # Disable delivery errors
Jean-Philippe Lang
Merged rails-3.2 branch....
r9346 config.action_mailer.raise_delivery_errors = false
Jean-Philippe Lang
Native eol property set on config/*...
r761
Jean-Philippe Lang
Merged rails-3.2 branch....
r9346 # No email in production log
config.action_mailer.logger = nil
Jean-Philippe Lang
Account information can now be sent to the user when creating an account....
r543
Jean-Philippe Lang
Merged rails-4.1 branch (#14534)....
r13100 # Print deprecation notices to the Rails logger.
Jean-Philippe Lang
Merged rails-3.2 branch....
r9346 config.active_support.deprecation = :log
end