devise.rb 13 KB

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