Move spec/mailers/previews to app/mailers/previews
This commit is contained in:
parent
34fe32740f
commit
c83381938a
6 changed files with 3 additions and 3 deletions
|
@ -39,7 +39,7 @@ Rails.application.configure do
|
|||
config.action_mailer.delivery_method = :letter_opener_web
|
||||
# Don't make a mess when bootstrapping a development environment
|
||||
config.action_mailer.perform_deliveries = (ENV['BOOTSTRAP'] != '1')
|
||||
config.action_mailer.preview_path = 'spec/mailers/previews'
|
||||
config.action_mailer.preview_path = 'app/mailers/previews'
|
||||
|
||||
config.eager_load = false
|
||||
|
||||
|
|
|
@ -10,12 +10,12 @@ To view rendered emails "sent" in your development instance, visit
|
|||
Rails provides a way to preview our mailer templates in HTML and plaintext using
|
||||
dummy data.
|
||||
|
||||
The previews live in [`spec/mailers/previews`][previews] and can be viewed at
|
||||
The previews live in [`app/mailers/previews`][previews] and can be viewed at
|
||||
[`/rails/mailers`](http://localhost:3000/rails/mailers).
|
||||
|
||||
See the [Rails guides] for more info.
|
||||
|
||||
[previews]: https://gitlab.com/gitlab-org/gitlab-ce/tree/master/spec/mailers/previews
|
||||
[previews]: https://gitlab.com/gitlab-org/gitlab-ce/tree/master/app/mailers/previews
|
||||
[Rails guides]: http://guides.rubyonrails.org/action_mailer_basics.html#previewing-emails
|
||||
|
||||
## Incoming email
|
||||
|
|
Loading…
Reference in a new issue