Description:
remove whitelist attribute from default config
Commit status:
[Not Reviewed]
References:
Diff options:
Comments:
0 Commit comments
0 Inline Comments
Unresolved TODOs:
There are no unresolved TODOs
r662:b90654c50456 - - 1 file changed: 0 inserted, 6 deleted
@@ -38,30 +38,24 | |||||
|
38 |
|
38 | ||
|
39 | # Configure sensitive parameters which will be filtered from the log file. |
|
39 | # Configure sensitive parameters which will be filtered from the log file. |
|
40 | config.filter_parameters += [:password] |
|
40 | config.filter_parameters += [:password] |
|
41 |
|
41 | ||
|
42 | # Enable escaping HTML in JSON. |
|
42 | # Enable escaping HTML in JSON. |
|
43 | config.active_support.escape_html_entities_in_json = true |
|
43 | config.active_support.escape_html_entities_in_json = true |
|
44 |
|
44 | ||
|
45 | # Use SQL instead of Active Record's schema dumper when creating the database. |
|
45 | # Use SQL instead of Active Record's schema dumper when creating the database. |
|
46 | # This is necessary if your schema can't be completely dumped by the schema dumper, |
|
46 | # This is necessary if your schema can't be completely dumped by the schema dumper, |
|
47 | # like if you have constraints or database-specific column types |
|
47 | # like if you have constraints or database-specific column types |
|
48 | # config.active_record.schema_format = :sql |
|
48 | # config.active_record.schema_format = :sql |
|
49 |
|
49 | ||
|
50 | - # Enforce whitelist mode for mass assignment. |
|
||
|
51 | - # This will create an empty whitelist of attributes available for mass-assignment for all models |
|
||
|
52 | - # in your app. As such, your models will need to explicitly whitelist or blacklist accessible |
|
||
|
53 | - # parameters by using an attr_accessible or attr_protected declaration. |
|
||
|
54 | - config.active_record.whitelist_attributes = false |
|
||
|
55 | - |
|
||
|
56 | # Enable the asset pipeline |
|
50 | # Enable the asset pipeline |
|
57 | config.assets.enabled = true |
|
51 | config.assets.enabled = true |
|
58 |
|
52 | ||
|
59 | # Version of your assets, change this if you want to expire all your assets |
|
53 | # Version of your assets, change this if you want to expire all your assets |
|
60 | config.assets.version = '1.0' |
|
54 | config.assets.version = '1.0' |
|
61 |
|
55 | ||
|
62 | # ---------------- IMPORTANT ---------------------- |
|
56 | # ---------------- IMPORTANT ---------------------- |
|
63 | # If we deploy the app into a subdir name "grader", be sure to do "rake assets:precompile RAILS_RELATIVE_URL_ROOT=/grader" |
|
57 | # If we deploy the app into a subdir name "grader", be sure to do "rake assets:precompile RAILS_RELATIVE_URL_ROOT=/grader" |
|
64 | # moreover, using the following line instead also known to works |
|
58 | # moreover, using the following line instead also known to works |
|
65 | #config.action_controller.relative_url_root = '/grader' |
|
59 | #config.action_controller.relative_url_root = '/grader' |
|
66 |
|
60 | ||
|
67 | #font path |
|
61 | #font path |
You need to be logged in to leave comments.
Login now