devise.rb 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236
  1. # Use this hook to configure devise mailer, warden hooks and so forth.
  2. # Many of these configuration options can be set straight in your model.
  3. Devise.setup do |config|
  4. # ==> Mailer Configuration
  5. # Configure the e-mail address which will be shown in Devise::Mailer,
  6. # note that it will be overwritten if you use your own mailer class with default "from" parameter.
  7. config.mailer_sender = "please-change-me-at-config-initializers-devise@example.com"
  8. # Configure the class responsible to send e-mails.
  9. # config.mailer = "Devise::Mailer"
  10. # ==> ORM configuration
  11. # Load and configure the ORM. Supports :active_record (default) and
  12. # :mongoid (bson_ext recommended) by default. Other ORMs may be
  13. # available as additional gems.
  14. require 'devise/orm/active_record'
  15. # ==> Configuration for any authentication mechanism
  16. # Configure which keys are used when authenticating a user. The default is
  17. # just :email. You can configure it to use [:username, :subdomain], so for
  18. # authenticating a user, both parameters are required. Remember that those
  19. # parameters are used only when authenticating and not when retrieving from
  20. # session. If you need permissions, you should implement that in a before filter.
  21. # You can also supply a hash where the value is a boolean determining whether
  22. # or not authentication should be aborted when the value is not present.
  23. config.authentication_keys = [ :login ]
  24. # Configure parameters from the request object used for authentication. Each entry
  25. # given should be a request method and it will automatically be passed to the
  26. # find_for_authentication method and considered in your model lookup. For instance,
  27. # if you set :request_keys to [:subdomain], :subdomain will be used on authentication.
  28. # The same considerations mentioned for authentication_keys also apply to request_keys.
  29. # config.request_keys = []
  30. # Configure which authentication keys should be case-insensitive.
  31. # These keys will be downcased upon creating or modifying a user and when used
  32. # to authenticate or find a user. Default is :email.
  33. config.case_insensitive_keys = [ :email ]
  34. # Configure which authentication keys should have whitespace stripped.
  35. # These keys will have whitespace before and after removed upon creating or
  36. # modifying a user and when used to authenticate or find a user. Default is :email.
  37. config.strip_whitespace_keys = [ :email ]
  38. # Tell if authentication through request.params is enabled. True by default.
  39. # It can be set to an array that will enable params authentication only for the
  40. # given strategies, for example, `config.params_authenticatable = [:database]` will
  41. # enable it only for database (email + password) authentication.
  42. # config.params_authenticatable = true
  43. # Tell if authentication through HTTP Basic Auth is enabled. False by default.
  44. # It can be set to an array that will enable http authentication only for the
  45. # given strategies, for example, `config.http_authenticatable = [:token]` will
  46. # enable it only for token authentication.
  47. # config.http_authenticatable = false
  48. # If http headers should be returned for AJAX requests. True by default.
  49. # config.http_authenticatable_on_xhr = true
  50. # The realm used in Http Basic Authentication. "Application" by default.
  51. # config.http_authentication_realm = "Application"
  52. # It will change confirmation, password recovery and other workflows
  53. # to behave the same regardless if the e-mail provided was right or wrong.
  54. # Does not affect registerable.
  55. # config.paranoid = true
  56. # By default Devise will store the user in session. You can skip storage for
  57. # :http_auth and :token_auth by adding those symbols to the array below.
  58. # Notice that if you are skipping storage for all authentication paths, you
  59. # may want to disable generating routes to Devise's sessions controller by
  60. # passing :skip => :sessions to `devise_for` in your config/routes.rb
  61. config.skip_session_storage = [:http_auth]
  62. # ==> Configuration for :database_authenticatable
  63. # For bcrypt, this is the cost for hashing the password and defaults to 10. If
  64. # using other encryptors, it sets how many times you want the password re-encrypted.
  65. #
  66. # Limiting the stretches to just one in testing will increase the performance of
  67. # your test suite dramatically. However, it is STRONGLY RECOMMENDED to not use
  68. # a value less than 10 in other environments.
  69. config.stretches = Rails.env.test? ? 1 : 10
  70. # Setup a pepper to generate the encrypted password.
  71. # config.pepper = "SOME LONG HASH GENERATED WITH rake secret"
  72. # ==> Configuration for :confirmable
  73. # A period that the user is allowed to access the website even without
  74. # confirming his account. For instance, if set to 2.days, the user will be
  75. # able to access the website for two days without confirming his account,
  76. # access will be blocked just in the third day. Default is 0.days, meaning
  77. # the user cannot access the website without confirming his account.
  78. # config.allow_unconfirmed_access_for = 2.days
  79. # If true, requires any email changes to be confirmed (exactly the same way as
  80. # initial account confirmation) to be applied. Requires additional unconfirmed_email
  81. # db field (see migrations). Until confirmed new email is stored in
  82. # unconfirmed email column, and copied to email column on successful confirmation.
  83. config.reconfirmable = true
  84. # Defines which key will be used when confirming an account
  85. config.confirmation_keys = [ :login ]
  86. # ==> Configuration for :rememberable
  87. # The time the user will be remembered without asking for credentials again.
  88. config.remember_for = 4.weeks
  89. # If true, extends the user's remember period when remembered via cookie.
  90. # config.extend_remember_period = false
  91. # Options to be passed to the created cookie. For instance, you can set
  92. # :secure => true in order to force SSL only cookies.
  93. if Rails.env.production?
  94. config.rememberable_options = { :secure => true }
  95. else
  96. config.rememberable_options = { }
  97. end
  98. # ==> Configuration for :validatable
  99. # Range for password length. Default is 6..128.
  100. # config.password_length = 6..128
  101. # Email regex used to validate email formats. It simply asserts that
  102. # an one (and only one) @ exists in the given string. This is mainly
  103. # to give user feedback and not to assert the e-mail validity.
  104. # config.email_regexp = /\A[^@]+@[^@]+\z/
  105. # ==> Configuration for :timeoutable
  106. # The time you want to timeout the user session without activity. After this
  107. # time the user will be asked for credentials again. Default is 30 minutes.
  108. # config.timeout_in = 30.minutes
  109. # If true, expires auth token on session timeout.
  110. # config.expire_auth_token_on_timeout = false
  111. # ==> Configuration for :lockable
  112. # Defines which strategy will be used to lock an account.
  113. # :failed_attempts = Locks an account after a number of failed attempts to sign in.
  114. # :none = No lock strategy. You should handle locking by yourself.
  115. config.lock_strategy = :failed_attempts
  116. # Defines which key will be used when locking and unlocking an account
  117. config.unlock_keys = [ :email ]
  118. # Defines which strategy will be used to unlock an account.
  119. # :email = Sends an unlock link to the user email
  120. # :time = Re-enables login after a certain amount of time (see :unlock_in below)
  121. # :both = Enables both strategies
  122. # :none = No unlock strategy. You should handle unlocking by yourself.
  123. config.unlock_strategy = :both
  124. # Number of authentication tries before locking an account if lock_strategy
  125. # is failed attempts.
  126. config.maximum_attempts = 10
  127. # Time interval to unlock the account if :time is enabled as unlock_strategy.
  128. config.unlock_in = 1.hour
  129. # ==> Configuration for :recoverable
  130. #
  131. # Defines which key will be used when recovering the password for an account
  132. config.reset_password_keys = [ :login ]
  133. # Time interval you can reset your password with a reset password key.
  134. # Don't put a too small interval or your users won't have the time to
  135. # change their passwords.
  136. config.reset_password_within = 6.hours
  137. # ==> Configuration for :encryptable
  138. # Allow you to use another encryption algorithm besides bcrypt (default). You can use
  139. # :sha1, :sha512 or encryptors from others authentication tools as :clearance_sha1,
  140. # :authlogic_sha512 (then you should set stretches above to 20 for default behavior)
  141. # and :restful_authentication_sha1 (then you should set stretches to 10, and copy
  142. # REST_AUTH_SITE_KEY to pepper)
  143. # config.encryptor = :sha512
  144. # ==> Configuration for :token_authenticatable
  145. # Defines name of the authentication token params key
  146. # config.token_authentication_key = :auth_token
  147. # ==> Scopes configuration
  148. # Turn scoped views on. Before rendering "sessions/new", it will first check for
  149. # "users/sessions/new". It's turned off by default because it's slower if you
  150. # are using only default views.
  151. # config.scoped_views = false
  152. # Configure the default scope given to Warden. By default it's the first
  153. # devise role declared in your routes (usually :user).
  154. # config.default_scope = :user
  155. # Set this configuration to false if you want /users/sign_out to sign out
  156. # only the current scope. By default, Devise signs out all scopes.
  157. # config.sign_out_all_scopes = true
  158. # ==> Navigation configuration
  159. # Lists the formats that should be treated as navigational. Formats like
  160. # :html, should redirect to the sign in page when the user does not have
  161. # access, but formats like :xml or :json, should return 401.
  162. #
  163. # If you have any extra navigational formats, like :iphone or :mobile, you
  164. # should add them to the navigational formats lists.
  165. #
  166. # The "*/*" below is required to match Internet Explorer requests.
  167. # config.navigational_formats = ["*/*", :html]
  168. # The default HTTP method used to sign out a resource. Default is :delete.
  169. config.sign_out_via = :get
  170. # ==> OmniAuth
  171. # Add a new OmniAuth provider. Check the wiki for more information on setting
  172. # up on your models and hooks.
  173. # config.omniauth :github, 'APP_ID', 'APP_SECRET', :scope => 'user,public_repo'
  174. # ==> Warden configuration
  175. # If you want to use other strategies, that are not supported by Devise, or
  176. # change the failure app, you can configure them inside the config.warden block.
  177. #
  178. # config.warden do |manager|
  179. # manager.intercept_401 = false
  180. # manager.default_strategies(:scope => :user).unshift :some_external_strategy
  181. # end
  182. # ==> Mountable engine configurations
  183. # When using Devise inside an engine, let's call it `MyEngine`, and this engine
  184. # is mountable, there are some extra configurations to be taken into account.
  185. # The following options are available, assuming the engine is mounted as:
  186. #
  187. # mount MyEngine, at: "/my_engine"
  188. #
  189. # The router that invoked `devise_for`, in the example above, would be:
  190. # config.router_name = :my_engine
  191. #
  192. # When using omniauth, Devise cannot automatically set Omniauth path,
  193. # so you need to do it manually. For the users scope, it would be:
  194. # config.omniauth_path_prefix = "/my_engine/users/auth"
  195. end