Sha256: cd9147524a54f0c1ce12dcad153652cc9036d1d0c256d60a4a1240eb4da4773e
Contents?: true
Size: 733 Bytes
Versions: 9
Compression:
Stored size: 733 Bytes
Contents
# frozen_string_literal: true Devise.setup do |config| # The secret key used by Devise. Devise uses this key to generate random # tokens. Changing this key will render invalid all existing confirmation, # reset password and unlock tokens in the database. # Devise will use the `secret_key_base` on Rails 4+ applications as its # `secret_key` by default. You can change it below and use your own # secret key. config.secret_key = "<%= SecureRandom.hex(50).to_s %>" # Mailer Configuration # Configure the e-mail address which will be shown in Devise::Mailer, # note that it will be overwritten if you use your own mailer class # with default "from" parameter. config.mailer_sender = "noreply@example.com" end
Version data entries
9 entries across 9 versions & 1 rubygems