forked from gundestrup/acts_as_authenticated
-
Notifications
You must be signed in to change notification settings - Fork 0
/
CHANGELOG
86 lines (51 loc) · 2.35 KB
/
CHANGELOG
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
* (1 Aug 2006)
Add error_messages_for to signup.rhtml
Favor save! over save in #signup
Refactor Authenticated System, actually use access_denied again
Change arthur fixture to aaron stack, the machine man!
* (3 July 2006)
Add cookie token support [cnf]
* (12 June 2006)
Fixed logged_in? so it does not keep hitting the database on every call if the user is not logged in.
Removed useless protect? method
Removed required 'user' argument of authorized?. Access action_name and current_user to determine authorization.
* (28 March 2006)
Removed "extra credit" documentation into wiki: http://technoweenie.stikipad.com/plugins/show/Acts+as+Authenticated
Stop validating the user's salt since they can't even fix that if they wanted to.
* (25 March 2006)
Added account_location plugin hooks
* (20 March 2006)
New for Rails 1.1!
Added #assert_difference and #assert_no_difference test helpers
Changed signup form to use #form_for
* (22 Jan 2006)
Fixed user validations
Fixed Migration table name
* (19 Jan 2006)
Fixed generator erb bug [Kyle Maxwell]
* (18 Jan 2006)
Fixed bug with password field adding validation errors [Chris Nolan]
Added persistent login example [Chris Nolan]
* (17 Dec 2005)
Various typos fixed. Examples for using an activation code added [Ben Bleything]
* (6 Dec 2005)
Add some docs to README, add install.rb script
* (20 Nov 2005)
Redirect to signup page if no users have been created [Bousquet]
Experimental generator for creating the users table. Requires edge rails and does not let you set the table name:
./script/generate authenticated_migration
* (18 Nov 2005)
Allow changing of the login model name when generating the observer [Bill Katz]
* (15 Nov 2005)
Commented out the activate action in the controller [tobyjoe]
fixed notifier.rb's erb variables [tobyjoe]
removed last old instance of set_current_user [tobyjoe]
* (13 Nov 2005)
fixed assert_login_required bug with :controller => '/account'
tweak logged_in? method to check for valid current_user, not just any old id value
comment out user activation by default
added index template, updated login_required comments [corp]
removed troublesome login_required class method. use the filter instead
* (12 Nov 2005)
renaming generators to authentication and authentication_mailer
store user ID in session by default