1
0
Fork 0
mirror of https://github.com/rails/rails.git synced 2022-11-09 12:12:34 -05:00

Fix documentation indentation:

- This was breaking the code highlight in the doc
This commit is contained in:
Edouard CHIN 2019-12-18 14:35:02 +01:00
parent 7fa807d636
commit a2171923e2

View file

@ -849,21 +849,21 @@ The configuration is by default global for all your models, but you can
override it on a per model basis. This should help you migrate all your models to have their override it on a per model basis. This should help you migrate all your models to have their
associations required by default. associations required by default.
```ruby ```ruby
class Book < ApplicationRecord class Book < ApplicationRecord
# model is not yet ready to have its association required by default # model is not yet ready to have its association required by default
self.belongs_to_required_by_default = false self.belongs_to_required_by_default = false
belongs_to(:author) belongs_to(:author)
end end
class Car < ApplicationRecord class Car < ApplicationRecord
# model is ready to have its association required by default # model is ready to have its association required by default
self.belongs_to_required_by_default = true self.belongs_to_required_by_default = true
belongs_to(:pilot) belongs_to(:pilot)
end end
``` ```
#### Per-form CSRF Tokens #### Per-form CSRF Tokens