wbase 0.3.7 → 0.3.8
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/app/views/wbase/password_resets/edit.html.erb +1 -1
- data/lib/wbase/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: f1f233ae69fdbf6d029c73c4d92945410afbcbff
|
4
|
+
data.tar.gz: a762f876579a8ea1827d8dcf50dc19e3ebaa67e7
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: e166c84df2bf05b462c6c47103927ccff795525658056ebad80a074b1974d94a0314465f518fb6ad983b989c199aa9ab7beb28e7fc3109567f75beeacf5d9400
|
7
|
+
data.tar.gz: d1ad9f50e151cbd29ac719be6ec1bd104f13bd2828e19153e520b3d1232c067ee36dd8be4346095f2b1b20654fb006d71fb405fbabb07727ca88a7ac99e1f2b1
|
@@ -6,7 +6,7 @@
|
|
6
6
|
<form id="reset-form" action="/password_reset" method="POST" novalidate="">
|
7
7
|
<input type="hidden" name="authenticity_token" value="<%= form_authenticity_token %>">
|
8
8
|
<input type="hidden" name="_method" value="PATCH">
|
9
|
-
<input type="hidden" name="reset_token" value="<%= params[:
|
9
|
+
<input type="hidden" name="reset_token" value="<%= params[:reset_token] || @user.try(:reset_token) %>">
|
10
10
|
<div class="form-group">
|
11
11
|
<label for="password">New Password</label>
|
12
12
|
<input type="password" class="form-control underlined" name="password" id="password" placeholder="Your new password" required>
|
data/lib/wbase/version.rb
CHANGED