diff options
author | HombreLaser <sebastian-440@live.com> | 2023-02-20 19:53:14 -0600 |
---|---|---|
committer | HombreLaser <sebastian-440@live.com> | 2023-02-20 19:53:14 -0600 |
commit | 9aa71bb4bfa345da9514bf6bb251985af0b8758e (patch) | |
tree | f980e6f7a9d8f311cf5edd6239775e5ff3a4c5b6 /app | |
parent | a4d29f635c7c6bec4a15ab43956a2be896b0ff11 (diff) |
AƱadidos safe autocorrects de rubocop
Diffstat (limited to 'app')
-rw-r--r-- | app/mailers/application_mailer.rb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/app/mailers/application_mailer.rb b/app/mailers/application_mailer.rb index 3c34c81..286b223 100644 --- a/app/mailers/application_mailer.rb +++ b/app/mailers/application_mailer.rb @@ -1,4 +1,4 @@ class ApplicationMailer < ActionMailer::Base - default from: "from@example.com" - layout "mailer" + default from: 'from@example.com' + layout 'mailer' end |