alchemy-devise 5.0.1 → 5.1.0

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
  SHA256:
3
- metadata.gz: d7cf8952620a0f56d95f9f809b61d1711b617a213d43ac6ed55e8b180aa194ef
4
- data.tar.gz: 85ea1e249415b2d8aa14a4edcf2dc429bc18a813f26f740ee3aca43240bbd907
3
+ metadata.gz: 4566c3a7aadd785a139dc528390802f45533b65636401ca375e6042d91a9a5bb
4
+ data.tar.gz: 44d966cecce3748e86cbf44a610379e969985d809059e31429807f343ffae5f2
5
5
  SHA512:
6
- metadata.gz: cf1515c619d2231aea6032dce59d2d64a75c8588810b7438466b5ab38275c67e4207e05e2ebf7ecb3e373a6bbe0472b4a7572b709ac959933ca624676b257bce
7
- data.tar.gz: d275895d02b2b8646dfb7a92a8724a9fc1ba258ba116e6dc0c359933fd9e4f06dbd4390bab5706aafc8f09822d953af12d40c4311e1822a07f7509c751bb0683
6
+ metadata.gz: bb99df8c86c7dc025f2530a1a2c148a6a31dc24e3b4bf4eee5751ba74d1402da286632af41e1256e8d2c03285aeb85cb7c2fc0396667cb52676f815ac76ad683
7
+ data.tar.gz: dc2b39ae26a2979f2e363fc3cbe569347e138f3e238d4cbe500ac1879e94effb5887b08ab37b3886f01a3b5d88da628256c049ac5e219ce01d01151e1fa806a6
data/README.md CHANGED
@@ -1,8 +1,8 @@
1
1
  ## Devise based authentication for AlchemyCMS
2
2
 
3
- [![Build Status](https://secure.travis-ci.org/AlchemyCMS/alchemy-devise.svg?branch=master)](http://travis-ci.org/AlchemyCMS/alchemy-devise)
3
+ [![Build Status](https://secure.travis-ci.com/AlchemyCMS/alchemy-devise.svg?branch=main)](http://travis-ci.com/AlchemyCMS/alchemy-devise)
4
4
 
5
- [![Gem Version](https://badge.fury.io/rb/alchemy-devise.svg)](http://badge.fury.io/rb/alchemy-devise) [![Test Coverage](https://codeclimate.com/github/AlchemyCMS/alchemy-devise/badges/coverage.svg)](https://codeclimate.com/github/AlchemyCMS/alchemy-devise/coverage) [![Code Climate](https://codeclimate.com/github/AlchemyCMS/alchemy-devise/badges/gpa.svg)](https://codeclimate.com/github/AlchemyCMS/alchemy-devise) [![security](https://hakiri.io/github/AlchemyCMS/alchemy-devise/master.svg)](https://hakiri.io/github/AlchemyCMS/alchemy-devise/master)
5
+ [![Gem Version](https://badge.fury.io/rb/alchemy-devise.svg)](http://badge.fury.io/rb/alchemy-devise) [![Test Coverage](https://codeclimate.com/github/AlchemyCMS/alchemy-devise/badges/coverage.svg)](https://codeclimate.com/github/AlchemyCMS/alchemy-devise/coverage) [![Code Climate](https://codeclimate.com/github/AlchemyCMS/alchemy-devise/badges/gpa.svg)](https://codeclimate.com/github/AlchemyCMS/alchemy-devise) [![security](https://hakiri.io/github/AlchemyCMS/alchemy-devise/main.svg)](https://hakiri.io/github/AlchemyCMS/alchemy-devise/main)
6
6
 
7
7
  AlchemyCMS has no authentication in its core. So it is possible to bring your own authentication and use it to authorize users in AlchemyCMS. If you don't have your own authentication, you can use this gem.
8
8
 
@@ -1,22 +1,21 @@
1
- <%= toolbar(
2
- buttons: [
3
- {
4
- icon: :plus,
5
- label: Alchemy.t(:create_user),
6
- url: alchemy.new_admin_user_path,
1
+ <%= content_for :toolbar do %>
2
+ <%= toolbar_button(
3
+ icon: :plus,
4
+ label: Alchemy.t(:create_user),
5
+ url: alchemy.new_admin_user_path,
6
+ title: Alchemy.t(:create_user),
7
+ hotkey: 'alt+n',
8
+ dialog_options: {
7
9
  title: Alchemy.t(:create_user),
8
- hotkey: 'alt+n',
9
- dialog_options: {
10
- title: Alchemy.t(:create_user),
11
- size: "430x560"
12
- },
13
- if_permitted_to: [:create, Alchemy::User]
14
- }
15
- ]
16
- ) %>
10
+ size: "430x560"
11
+ },
12
+ if_permitted_to: [:create, Alchemy::User]
13
+ ) %>
14
+ <%= render "alchemy/admin/partials/search_form" %>
15
+ <% end %>
17
16
 
18
17
  <div id="archive_all" class="resources-table-wrapper">
19
- <%= resources_header %>
18
+ <%= render "alchemy/admin/resources/table_header" %>
20
19
  <% if @users.any? %>
21
20
 
22
21
  <table class="list" id="user_list">
@@ -1,23 +1,25 @@
1
- require 'alchemy/devise/ability'
1
+ # frozen_string_literal: true
2
+
3
+ require "alchemy/devise/ability"
2
4
 
3
5
  Alchemy.register_ability(Alchemy::Devise::Ability)
4
6
 
5
7
  Alchemy::Modules.register_module({
6
- name: 'users',
7
- engine_name: 'alchemy',
8
+ name: "users",
9
+ engine_name: "alchemy",
8
10
  position: 4.1,
9
11
  navigation: {
10
- name: 'modules.users',
11
- controller: 'alchemy/admin/users',
12
- action: 'index',
13
- icon: 'users'
14
- }
12
+ name: "modules.users",
13
+ controller: "/alchemy/admin/users",
14
+ action: "index",
15
+ icon: "users",
16
+ },
15
17
  })
16
18
 
17
- Alchemy.user_class_name = 'Alchemy::User'
18
- Alchemy.signup_path = '/admin/signup'
19
- Alchemy.login_path = '/admin/login'
20
- Alchemy.logout_path = '/admin/logout'
19
+ Alchemy.user_class_name = "Alchemy::User"
20
+ Alchemy.signup_path = "/admin/signup"
21
+ Alchemy.login_path = "/admin/login"
22
+ Alchemy.logout_path = "/admin/logout"
21
23
 
22
24
  if Alchemy.respond_to?(:logout_method)
23
25
  Rails.application.config.after_initialize do
@@ -10,16 +10,16 @@ module Alchemy
10
10
  can :create, Alchemy::User if Alchemy::User.count == 0
11
11
 
12
12
  if member? || author? || editor?
13
- can [:show, :update], Alchemy.user_class, id: user.id
13
+ can [:show, :update], Alchemy::User, id: user.id
14
14
  end
15
15
 
16
16
  if editor? || admin?
17
17
  can :index, :alchemy_admin_users
18
- can :read, Alchemy.user_class
18
+ can :read, Alchemy::User
19
19
  end
20
20
 
21
21
  if admin?
22
- can :manage, Alchemy.user_class
22
+ can :manage, Alchemy::User
23
23
  end
24
24
  end
25
25
 
@@ -1,5 +1,5 @@
1
1
  module Alchemy
2
2
  module Devise
3
- VERSION = "5.0.1"
3
+ VERSION = "5.1.0"
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: alchemy-devise
3
3
  version: !ruby/object:Gem::Version
4
- version: 5.0.1
4
+ version: 5.1.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Thomas von Deyen
8
- autorequire:
8
+ autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2020-11-22 00:00:00.000000000 Z
11
+ date: 2021-01-13 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: alchemy_cms
@@ -16,20 +16,20 @@ dependencies:
16
16
  requirements:
17
17
  - - ">="
18
18
  - !ruby/object:Gem::Version
19
- version: 4.1.0
19
+ version: 5.0.0
20
20
  - - "<"
21
21
  - !ruby/object:Gem::Version
22
- version: '5.1'
22
+ version: '6'
23
23
  type: :runtime
24
24
  prerelease: false
25
25
  version_requirements: !ruby/object:Gem::Requirement
26
26
  requirements:
27
27
  - - ">="
28
28
  - !ruby/object:Gem::Version
29
- version: 4.1.0
29
+ version: 5.0.0
30
30
  - - "<"
31
31
  - !ruby/object:Gem::Version
32
- version: '5.1'
32
+ version: '6'
33
33
  - !ruby/object:Gem::Dependency
34
34
  name: devise
35
35
  requirement: !ruby/object:Gem::Requirement
@@ -211,8 +211,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
211
211
  version: '0'
212
212
  requirements: []
213
213
  rubygems_version: 3.1.4
214
- signing_key:
214
+ signing_key:
215
215
  specification_version: 4
216
216
  summary: Devise based user authentication for AlchemyCMS.
217
217
  test_files: []
218
- ...