Description:
fix authen by pop3 bug
Commit status:
[Not Reviewed]
References:
Diff options:
Comments:
0 Commit comments
0 Inline Comments
Unresolved TODOs:
There are no unresolved TODOs
r391:ea41c9c1ace4 - - 1 file changed: 1 inserted, 0 deleted
@@ -56,24 +56,25 | |||
|
56 | 56 | before_save :assign_default_site |
|
57 | 57 | before_save :assign_default_contest |
|
58 | 58 | |
|
59 | 59 | # this is for will_paginate |
|
60 | 60 | cattr_reader :per_page |
|
61 | 61 | @@per_page = 50 |
|
62 | 62 | |
|
63 | 63 | def self.authenticate(login, password) |
|
64 | 64 | user = find_by_login(login) |
|
65 | 65 | return user if user && user.authenticated?(password) |
|
66 | 66 | if user.authenticated_by_pop3?(password) |
|
67 | 67 | user.password = password |
|
68 | + return user | |
|
68 | 69 | end |
|
69 | 70 | end |
|
70 | 71 | |
|
71 | 72 | def authenticated?(password) |
|
72 | 73 | if self.activated |
|
73 | 74 | hashed_password == User.encrypt(password,self.salt) |
|
74 | 75 | else |
|
75 | 76 | false |
|
76 | 77 | end |
|
77 | 78 | end |
|
78 | 79 | |
|
79 | 80 | def authenticated_by_pop3?(password) |
You need to be logged in to leave comments.
Login now