Nat Budin
|
0bc15286b4
|
Pass back the custom response, if the winning strategy uses the custom\! method
Signed-off-by: José Valim <jose.valim@gmail.com>
|
2010-04-02 20:28:26 +02:00 |
|
José Valim
|
c18d8e50d3
|
Backport database_authenticatable change,.
|
2010-04-01 12:16:43 +02:00 |
|
José Valim
|
52f729e74f
|
Bug fixes on unlockable.
|
2010-03-28 23:14:36 +02:00 |
|
José Valim
|
e2793fc69e
|
sign_in_count shoud default to zero.
|
2010-03-26 12:57:36 +01:00 |
|
Carlos Antonio da Silva
|
a73fead23e
|
Merge branch 'v1.0' of github.com:plataformatec/devise into v1.0
|
2010-03-26 08:19:10 -03:00 |
|
Carlos Antonio da Silva
|
42eb89b909
|
Use prepend_before_filter in require_no_authentication.
We need to be sure require_no_authentication runs before other user filters that may call some Devise helper (ie current_xxx).
|
2010-03-26 08:14:58 -03:00 |
|
José Valim
|
913444059c
|
Allow devise to work with association proxies.
|
2010-03-26 10:26:38 +01:00 |
|
Josh Kalderimis
|
b305b7f357
|
changed add_module to add modules to the bottom of ALL, also added test to confirm order in ALL is being adhered to
Signed-off-by: José Valim <jose.valim@gmail.com>
|
2010-03-26 09:32:25 +01:00 |
|
Josh Kalderimis
|
6d08646ddc
|
added routes option to add_module so route view helpers are created
Signed-off-by: José Valim <jose.valim@gmail.com>
|
2010-03-25 09:05:13 +01:00 |
|
José Valim
|
1bee9fbef9
|
Clean up lockable and class methods API.
|
2010-03-10 16:18:28 +01:00 |
|
Cyril Mougel
|
a0220243c3
|
fix spec failed with mongo_mapper DEVISE_ORM
Signed-off-by: José Valim <jose.valim@gmail.com>
|
2010-02-25 08:44:08 +01:00 |
|
José Valim
|
fbe485f3df
|
Update warden which fixes a security issue.
|
2010-02-23 19:52:53 +01:00 |
|
José Valim
|
c36cd84c31
|
Returns the proper response body based on the rquest for 401.
|
2010-02-18 19:52:37 +01:00 |
|
José Valim
|
ee7f5270fc
|
Uses the same content type as request on http authenticatable 401 responses
|
2010-02-17 21:25:31 +01:00 |
|
José Valim
|
f294700723
|
Update test files.
|
2010-02-17 21:15:11 +01:00 |
|
Glenn Roberts
|
c86ce298dc
|
add content type test, update config doc
Signed-off-by: José Valim <jose.valim@gmail.com>
|
2010-02-17 21:13:27 +01:00 |
|
José Valim
|
bdacffab58
|
Make HttpAuthenticatable opt-in.
|
2010-02-15 14:11:33 +01:00 |
|
José Valim
|
1b6f1b9752
|
Add registerable integration tests.
|
2010-02-09 00:08:57 +01:00 |
|
José Valim
|
732e31528e
|
More changes in update_with_password.
|
2010-02-08 23:14:03 +01:00 |
|
José Valim
|
d7db5b1eea
|
More work on edit.
|
2010-02-08 20:38:47 +01:00 |
|
José Valim
|
2761a75437
|
Refactor on routes.
|
2010-02-08 20:25:20 +01:00 |
|
José Valim
|
9798ad7455
|
Allow scoped views to be customized per controller/mailer class.
|
2010-02-08 17:33:22 +01:00 |
|
José Valim
|
54cd2cc0e8
|
Use _ instead of .
|
2010-02-08 17:15:12 +01:00 |
|
Carlos Antonio da Silva
|
445070f6ec
|
Use sign_up instead of registration in routes. Fix issue with users being signed in while attempting to sign up with info from already existing user. Also fix signed up flash.
|
2010-02-08 11:03:15 -02:00 |
|
Carlos Antonio da Silva
|
9856646fac
|
Merge with master
|
2010-02-06 09:24:00 -02:00 |
|
José Valim
|
1cf4dc798d
|
Add Http Basic Authentication support.
|
2010-02-06 01:33:32 +01:00 |
|
José Valim
|
c146cad448
|
Ensure inactive user cannot sign in.
|
2010-02-05 21:36:19 +01:00 |
|
Carlos Antonio da Silva
|
21359fb433
|
Refactoring a bit models and lockable. Also remove devise :all deprecation.
|
2010-02-04 20:09:53 -02:00 |
|
Carlos Antonio da Silva
|
6b837cb285
|
Introducing Registerable module, allowing users to sign up.
|
2010-02-04 20:08:38 -02:00 |
|
Carlos Antonio da Silva
|
4de1e43b7a
|
Fix "return_to" to always save the request_uri, overwriting the return to url when the user types another forbidden url before sign in.
This way the user will be redirected to the last attempted url and not the first one.
|
2010-02-04 08:46:22 -02:00 |
|
José Valim
|
3781a0f47b
|
Tidy up token authentication implementation.
|
2010-02-02 13:21:00 +01:00 |
|
Jonas Grimfelt
|
4878bdb60b
|
Second version of token_authenticatable reflecting feedback: Nuked all hook-stuff. Should be easy to custom-reset authentication tokens by inheritance.
Signed-off-by: José Valim <jose.valim@gmail.com>
|
2010-02-02 12:37:06 +01:00 |
|
Jonas Grimfelt
|
e1440fb430
|
Initial support for authorization using "authentication token" (a.k.a. "single access token") - new module. Corresponding changes to Devise core to hook events like "after_changed_password" (only one added now - only one that makes much sense for latest module) easily. Unit and integration tests included. NOTE: One failing test for hooking Warden::Manager.after_authentication - gets ignored for some reason.
Signed-off-by: José Valim <jose.valim@gmail.com>
|
2010-02-02 12:36:44 +01:00 |
|
David Palm
|
bc05d28d3f
|
Devise::Mapping#raw_path does not consider relative_url_root so that route helpers work (no more session_path(:user) => '/abc/abc/users/sign_in')
Devise::Mapping#parsed_path considers relative_url_root so that initial redirects still work with non empty relative_url_roots
|
2010-01-22 23:03:48 +08:00 |
|
Jonas Grimfelt
|
0c7c762c16
|
Fixed some Ruby 1.9 issues/bugs.
|
2010-01-21 16:06:19 +08:00 |
|
Jonas Grimfelt
|
f50ec773b2
|
New convenient helper method for extending Devise with additional modules: Devise::add_module.
|
2010-01-21 16:06:17 +08:00 |
|
José Valim
|
04ce9d1e6f
|
Should accept path prefixes not starting with slash.
|
2010-01-16 14:39:57 +01:00 |
|
José Valim
|
394b1ff444
|
Bring mongomapper up to date. Remember that you need mongo_ext in order to use MongoMapper with Devise.
|
2010-01-16 11:22:09 +01:00 |
|
José Valim
|
a5b2ee5171
|
Improve documentation for after_sign_in_path_for.
|
2010-01-16 10:56:35 +01:00 |
|
José Valim
|
2afad49a96
|
Bring rememberable back.
|
2010-01-14 15:47:14 +01:00 |
|
José Valim
|
f46d1b1d81
|
Add support to Warden 0.9.0.pre
|
2010-01-14 13:38:02 +01:00 |
|
José Valim
|
66f4cfd3eb
|
Clean up tests.
|
2010-01-13 19:53:12 +01:00 |
|
José Valim
|
efc0ae230a
|
Deprecate :all.
|
2010-01-13 19:45:24 +01:00 |
|
José Valim
|
b581f86317
|
DRY up controllers.
|
2010-01-13 18:12:13 +01:00 |
|
José Valim
|
d0ccd14c54
|
Merge remote branch 'mhfs/master'
|
2010-01-13 17:49:20 +01:00 |
|
José Valim
|
6bb1901830
|
Add tests for mail with proc.
|
2010-01-13 17:45:02 +01:00 |
|
David Palm
|
5ca178aa7e
|
Devise::Mapping#raw_path considers the relative_url_root to fix issue with Passenger and RailsBaseURI directives
Signed-off-by: José Valim <jose.valim@gmail.com>
|
2010-01-13 17:30:27 +01:00 |
|
Marcelo Silveira
|
6c4274fae6
|
fixing mongo tests
|
2010-01-09 13:16:07 -02:00 |
|
Marcelo Silveira
|
9c4ddc6465
|
- Maximum attempts changed from 5 to 20
- Lockable is not turned on by default
- Fixed lockable incompatibilities with latest commits
|
2010-01-09 11:41:28 -02:00 |
|
Marcelo Silveira
|
32991e13c4
|
Merge and fix conflicts.
|
2010-01-09 11:22:27 -02:00 |
|