auth-lh 0.29.0 → 0.30.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 9b6bf5a1824a0041c9b731acbdc56b79215e4910
4
- data.tar.gz: bee9735bbb889b4b4c499d5014c9e86e9dc0e8ac
3
+ metadata.gz: 5fa5f3d2a3422c1b745ef86e6433d07b9dceed3a
4
+ data.tar.gz: 9c9936633084f85bacb6a953aa7209d4b86320aa
5
5
  SHA512:
6
- metadata.gz: 96e2a5bc7ade78bc96f5a40a34db204c26c7c59a6c3a73ef317e65acc199c4aabe69d85815cf325f7a02ce7870e3d994668c80eaf996caa235b11ec6680216d3
7
- data.tar.gz: f6009113e148fa8104e90ae7374f96f8f680997ba2b53f19160a2ee03d83af9f34abc8f58b68c8ec8fa5168dc0cedcbe74367bef79a80bdab9bf8830ac610074
6
+ metadata.gz: 196279305e6d72f47df50660261a1c47cad024dd582b2431fc85a51e733884a25ffe2db6858582f6c879d2d6c9a8c3d3c5a209cacb13e7ecd800a587a6d6f0aa
7
+ data.tar.gz: f6a49d56b789e80b7b07886676ff040f7bb160885d316f97e8c463edad854306ee0122c3c74d08f3af574c1b23702abed1ef847c934054cd75f7864bb505a3cd
data/CHANGELOG.md CHANGED
@@ -256,4 +256,8 @@
256
256
 
257
257
  ## v0.29.0
258
258
 
259
- * Bugfix allowed local apps
259
+ * Bugfix allowed local app
260
+
261
+ ## v0.30.0
262
+
263
+ * Fixed change password url
@@ -1,5 +1,5 @@
1
1
  module Auth
2
2
  module Lh
3
- VERSION = "0.29.0"
3
+ VERSION = "0.30.0"
4
4
  end
5
5
  end
data/lib/auth_lh/api.rb CHANGED
@@ -73,9 +73,9 @@ module AuthLh
73
73
 
74
74
  def self.change_password_url(return_url=nil)
75
75
  if return_url.present?
76
- "#{@endpoint}/change_password?return_url=#{CGI::escape(return_url)}"
76
+ "#{@endpoint}/current_user/password/edit?return_url=#{CGI::escape(return_url)}"
77
77
  else
78
- "#{@endpoint}/change_password"
78
+ "#{@endpoint}/current_user/password/edit"
79
79
  end
80
80
  end
81
81
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: auth-lh
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.29.0
4
+ version: 0.30.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Matias Hick