PageRenderTime 25ms CodeModel.GetById 28ms RepoModel.GetById 0ms app.codeStats 0ms

/config/initializers/devise.rb

https://github.com/kaethorn/ptime
Ruby | 211 lines | 12 code | 40 blank | 159 comment | 0 complexity | 4f05322ba15ce14e7b2990b6bdc1bb0f MD5 | raw file
  1. # Use this hook to configure devise mailer, warden hooks and so forth. The first
  2. # four configuration values can also be set straight in your models.
  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 = [ :username ]
  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 = [ :username ]
  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 = [ :username ]
  38. # Tell if authentication through request.params is enabled. True by default.
  39. # config.params_authenticatable = true
  40. # Tell if authentication through HTTP Basic Auth is enabled. False by default.
  41. # config.http_authenticatable = false
  42. # If http headers should be returned for AJAX requests. True by default.
  43. # config.http_authenticatable_on_xhr = true
  44. # The realm used in Http Basic Authentication. "Application" by default.
  45. # config.http_authentication_realm = "Application"
  46. # It will change confirmation, password recovery and other workflows
  47. # to behave the same regardless if the e-mail provided was right or wrong.
  48. # Does not affect registerable.
  49. # config.paranoid = true
  50. # ==> Configuration for :database_authenticatable
  51. # For bcrypt, this is the cost for hashing the password and defaults to 10. If
  52. # using other encryptors, it sets how many times you want the password re-encrypted.
  53. #
  54. # Limiting the stretches to just one in testing will increase the performance of
  55. # your test suite dramatically. However, it is STRONGLY RECOMMENDED to not use
  56. # a value less than 10 in other environments.
  57. config.stretches = Rails.env.test? ? 1 : 10
  58. # Setup a pepper to generate the encrypted password.
  59. config.pepper = "2def8e506f96f8a3a5e840a6ac720365395432357e1606a5d9230c7caa8710c2ffa7b3a16af282ae15e0bb13dbc29c65b73078a27dd2e9247651ef53e8e28b5e"
  60. # ==> Configuration for :confirmable
  61. # The time you want to give your user to confirm his account. During this time
  62. # he will be able to access your application without confirming. Default is 0.days
  63. # When confirm_within is zero, the user won't be able to sign in without confirming.
  64. # You can use this to let your user access some features of your application
  65. # without confirming the account, but blocking it after a certain period
  66. # (ie 2 days).
  67. # config.confirm_within = 2.days
  68. # Defines which key will be used when confirming an account
  69. # config.confirmation_keys = [ :email ]
  70. # ==> Configuration for :rememberable
  71. # The time the user will be remembered without asking for credentials again.
  72. # config.remember_for = 2.weeks
  73. # If true, a valid remember token can be re-used between multiple browsers.
  74. # config.remember_across_browsers = true
  75. # If true, extends the user's remember period when remembered via cookie.
  76. # config.extend_remember_period = false
  77. # If true, uses the password salt as remember token. This should be turned
  78. # to false if you are not using database authenticatable.
  79. config.use_salt_as_remember_token = true
  80. # Options to be passed to the created cookie. For instance, you can set
  81. # :secure => true in order to force SSL only cookies.
  82. # config.cookie_options = {}
  83. # ==> Configuration for :validatable
  84. # Range for password length. Default is 6..128.
  85. # config.password_length = 6..128
  86. # Email regex used to validate email formats. It simply asserts that
  87. # an one (and only one) @ exists in the given string. This is mainly
  88. # to give user feedback and not to assert the e-mail validity.
  89. # config.email_regexp = /\A[^@]+@[^@]+\z/
  90. # ==> Configuration for :timeoutable
  91. # The time you want to timeout the user session without activity. After this
  92. # time the user will be asked for credentials again. Default is 30 minutes.
  93. # config.timeout_in = 30.minutes
  94. # ==> Configuration for :lockable
  95. # Defines which strategy will be used to lock an account.
  96. # :failed_attempts = Locks an account after a number of failed attempts to sign in.
  97. # :none = No lock strategy. You should handle locking by yourself.
  98. # config.lock_strategy = :failed_attempts
  99. # Defines which key will be used when locking and unlocking an account
  100. # config.unlock_keys = [ :email ]
  101. # Defines which strategy will be used to unlock an account.
  102. # :email = Sends an unlock link to the user email
  103. # :time = Re-enables login after a certain amount of time (see :unlock_in below)
  104. # :both = Enables both strategies
  105. # :none = No unlock strategy. You should handle unlocking by yourself.
  106. # config.unlock_strategy = :both
  107. # Number of authentication tries before locking an account if lock_strategy
  108. # is failed attempts.
  109. # config.maximum_attempts = 20
  110. # Time interval to unlock the account if :time is enabled as unlock_strategy.
  111. # config.unlock_in = 1.hour
  112. # ==> Configuration for :recoverable
  113. #
  114. # Defines which key will be used when recovering the password for an account
  115. # config.reset_password_keys = [ :email ]
  116. # Time interval you can reset your password with a reset password key.
  117. # Don't put a too small interval or your users won't have the time to
  118. # change their passwords.
  119. config.reset_password_within = 2.hours
  120. # ==> Configuration for :encryptable
  121. # Allow you to use another encryption algorithm besides bcrypt (default). You can use
  122. # :sha1, :sha512 or encryptors from others authentication tools as :clearance_sha1,
  123. # :authlogic_sha512 (then you should set stretches above to 20 for default behavior)
  124. # and :restful_authentication_sha1 (then you should set stretches to 10, and copy
  125. # REST_AUTH_SITE_KEY to pepper)
  126. # config.encryptor = :sha512
  127. # ==> Configuration for :token_authenticatable
  128. # Defines name of the authentication token params key
  129. # config.token_authentication_key = :auth_token
  130. # If true, authentication through token does not store user in session and needs
  131. # to be supplied on each request. Useful if you are using the token as API token.
  132. # config.stateless_token = false
  133. # ==> Scopes configuration
  134. # Turn scoped views on. Before rendering "sessions/new", it will first check for
  135. # "users/sessions/new". It's turned off by default because it's slower if you
  136. # are using only default views.
  137. # config.scoped_views = false
  138. # Configure the default scope given to Warden. By default it's the first
  139. # devise role declared in your routes (usually :user).
  140. # config.default_scope = :user
  141. # Configure sign_out behavior.
  142. # Sign_out action can be scoped (i.e. /users/sign_out affects only :user scope).
  143. # The default is true, which means any logout action will sign out all active scopes.
  144. # config.sign_out_all_scopes = true
  145. # ==> Navigation configuration
  146. # Lists the formats that should be treated as navigational. Formats like
  147. # :html, should redirect to the sign in page when the user does not have
  148. # access, but formats like :xml or :json, should return 401.
  149. #
  150. # If you have any extra navigational formats, like :iphone or :mobile, you
  151. # should add them to the navigational formats lists.
  152. #
  153. # The :"*/*" and "*/*" formats below is required to match Internet
  154. # Explorer requests.
  155. # config.navigational_formats = [:"*/*", "*/*", :html]
  156. # The default HTTP method used to sign out a resource. Default is :delete.
  157. config.sign_out_via = :delete
  158. # ==> OmniAuth
  159. # Add a new OmniAuth provider. Check the wiki for more information on setting
  160. # up on your models and hooks.
  161. # config.omniauth :github, 'APP_ID', 'APP_SECRET', :scope => 'user,public_repo'
  162. # ==> Warden configuration
  163. # If you want to use other strategies, that are not supported by Devise, or
  164. # change the failure app, you can configure them inside the config.warden block.
  165. #
  166. # config.warden do |manager|
  167. # manager.failure_app = AnotherApp
  168. # manager.intercept_401 = false
  169. # manager.default_strategies(:scope => :user).unshift :some_external_strategy
  170. # end
  171. end