wheels 0.0.47 → 0.0.48
Sign up to get free protection for your applications and to get access to all the features.
- data/VERSION +1 -1
- data/app/controllers/users_controller.rb +4 -1
- data/wheels.gemspec +1 -1
- metadata +2 -2
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
0.0.
|
1
|
+
0.0.48
|
@@ -9,7 +9,10 @@ class UsersController < InheritedResources::Base
|
|
9
9
|
end
|
10
10
|
|
11
11
|
def update
|
12
|
-
update!
|
12
|
+
update! do |success, failure|
|
13
|
+
failure.html{redirect_to "/change_password"}
|
14
|
+
success.html{flash[:notice] = "Your password has been updated."; redirect_to root_url}
|
15
|
+
end
|
13
16
|
end
|
14
17
|
|
15
18
|
def verify
|
data/wheels.gemspec
CHANGED