@@ -9,6 +9,7 gem "mime-types" | |||
|
9 | 9 | gem "awesome_nested_set", "3.0.0" |
|
10 | 10 | gem "protected_attributes" |
|
11 | 11 | gem "actionpack-action_caching" |
|
12 | gem "actionpack-xml_parser" | |
|
12 | 13 | |
|
13 | 14 | # Windows does not include zoneinfo files, so bundle the tzinfo-data gem |
|
14 | 15 | gem 'tzinfo-data', platforms: [:mingw, :x64_mingw, :mswin, :jruby] |
@@ -47,6 +47,10 module RedmineApp | |||
|
47 | 47 | # Do not include all helpers |
|
48 | 48 | config.action_controller.include_all_helpers = false |
|
49 | 49 | |
|
50 | # XML parameter parser removed from core in Rails 4.0 | |
|
51 | # and extracted to actionpack-xml_parser gem | |
|
52 | config.middleware.insert_after ActionDispatch::ParamsParser, ActionDispatch::XmlParamsParser | |
|
53 | ||
|
50 | 54 | # Specific cache for search results, the default file store cache is not |
|
51 | 55 | # a good option as it could grow fast. A memory store (32MB max) is used |
|
52 | 56 | # as the default. If you're running multiple server processes, it's |
General Comments 0
You need to be logged in to leave comments.
Login now