tkh_authentication 0.9.14 → 0.9.15

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 92bf53cc857cf087f612c04ab01f4a88a84fedc5
4
- data.tar.gz: ec91504c2d50a1eca00d2ab8873c4d602384eebb
3
+ metadata.gz: 9c3f18fbc02342e10fe846903729f794f2471855
4
+ data.tar.gz: 19e79b95397f5be3240a7b65b0e24c9bb0e54959
5
5
  SHA512:
6
- metadata.gz: a58df08ec3a7539cbfc4139ffd502df3d4237156c6498a3230ae5d822dd25108ff0839a4e673847600967801b2019b92b554ba3c35f1801a3a9dcf9b15527aab
7
- data.tar.gz: 6790ee3f637e68694703a432a00192215cb5c241563e7db5cd105a9887ebf9682cab3ec81e3a73a240ebda2a09550069d6f66b8f9e4f322cfe0bae127580f87c
6
+ metadata.gz: 4a311d82ae0e3a133443e30ef403cfb1ed148f117314c4face54acd77d137d4cd5b5eda9535cf3b4d1086db09caf75e3081e48615acb241d7aad512c2b2f1a8d
7
+ data.tar.gz: 9ee3de815b39f120f5bbae171ad5d02313162cd797af7141cc023f2b8529fc3b21f29b3c34bf015ccda3bfbee64e0ff6e6ea796f9fb15a48a95dc8e129a999b2
data/CHANGELOG.md CHANGED
@@ -2,6 +2,11 @@
2
2
 
3
3
 
4
4
 
5
+ ## 0.9.15
6
+
7
+ * Users index view links point to members controller as opposed to deprecated details controller. Upgrading the tkh_mailing_list connection
8
+
9
+
5
10
  ## 0.9.14
6
11
 
7
12
  * Better integration with tkh_mailing_list gem.
@@ -15,7 +15,7 @@
15
15
  <tbody>
16
16
  <% @users.each do |user| %>
17
17
  <tr>
18
- <td><%= link_to user.name, detail_path(user) %></td>
18
+ <td><%= link_to user.name, member_path(user) %></td>
19
19
  <td><%= user.email %></td>
20
20
  <td>
21
21
  <% unless user.admin? %>
@@ -24,7 +24,7 @@
24
24
  <span class="label label-success">✓</span> <%= link_to t('authentication.disable_admin'), remove_admin_user_path(user), class: 'btn btn-xs btn-primary', method: :post %>
25
25
  <% end -%>
26
26
  </td>
27
- <td><%= link_to t('edit'), edit_detail_path(user), class: 'btn btn-xs btn-default' %><%= link_to t('delete'), Detail.find(user.id), method: :delete, data: { confirm: t('are_you_sure') }, class: 'btn btn-xs btn-danger' %></td>
27
+ <td><%= link_to t('edit'), edit_member_path(user), class: 'btn btn-xs btn-default' %><%= link_to t('delete'), Member.find(user.id), method: :delete, data: { confirm: t('are_you_sure') }, class: 'btn btn-xs btn-danger' %></td>
28
28
  </tr>
29
29
  <% end %>
30
30
  </tbody>
@@ -1,3 +1,3 @@
1
1
  module TkhAuthentication
2
- VERSION = "0.9.14"
2
+ VERSION = "0.9.15"
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: tkh_authentication
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.9.14
4
+ version: 0.9.15
5
5
  platform: ruby
6
6
  authors:
7
7
  - Swami Atma
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2014-08-29 00:00:00.000000000 Z
11
+ date: 2014-09-10 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rails