effective_organizations 0.0.7 → 0.2.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 +4 -4
- data/app/controllers/admin/organizations_controller.rb +1 -1
- data/app/datatables/effective_representatives_datatable.rb +4 -2
- data/app/models/concerns/effective_organizations_organization.rb +2 -0
- data/app/models/effective/representative.rb +5 -0
- data/app/views/admin/organizations/_form_organization.html.haml +1 -1
- data/app/views/effective/organizations/_dashboard.html.haml +3 -3
- data/db/migrate/01_create_effective_organizations.rb.erb +5 -2
- data/lib/effective_organizations/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: f389ae4c41e7cdfdad7b45438d609e856120588a41349f646d01642a05b201fe
|
4
|
+
data.tar.gz: 154421f7cf8f595dbd94e97e58d6518e7ee7669e6c2215772430387076b12650
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: cadde1ce5c1f15a34d597cdf4ad85d6c5db65f4cd4e4e91cb121d38d91a6c4a2acd445489619d0525e50d919c514127a8f222cdc26c11d997b971d18f25b847b
|
7
|
+
data.tar.gz: e79c2db21ecb241094104e5624c0d5816e2d4ddaab9009b2071678b3dfac5b47a99694b1d466bc83a883d3b96f88bff85bc5d8fefbbe8c5e90ef8bbae4e14e57
|
@@ -6,7 +6,7 @@ module Admin
|
|
6
6
|
include Effective::CrudController
|
7
7
|
|
8
8
|
resource_scope -> { EffectiveOrganizations.Organization.deep.all }
|
9
|
-
datatable -> { Admin::EffectiveOrganizationsDatatable.new }
|
9
|
+
datatable -> { EffectiveResources.best('Admin::EffectiveOrganizationsDatatable').new }
|
10
10
|
|
11
11
|
private
|
12
12
|
|
@@ -5,8 +5,10 @@ class EffectiveRepresentativesDatatable < Effective::Datatable
|
|
5
5
|
col :organization
|
6
6
|
col :user
|
7
7
|
|
8
|
-
|
9
|
-
|
8
|
+
unless attributes[:user_id]
|
9
|
+
col :email do |representative|
|
10
|
+
mail_to(representative.user.email)
|
11
|
+
end
|
10
12
|
end
|
11
13
|
|
12
14
|
col :roles, search: roles_collection
|
@@ -26,6 +26,11 @@ module Effective
|
|
26
26
|
user.password ||= SecureRandom.base64(12) + '!@#123abcABC-'
|
27
27
|
end
|
28
28
|
|
29
|
+
after_commit(on: [:create, :destroy], if: -> { user.class.respond_to?(:effective_memberships_owner?) }) do
|
30
|
+
user.representatives.reload
|
31
|
+
user.update_member_role!
|
32
|
+
end
|
33
|
+
|
29
34
|
validates :organization, presence: true
|
30
35
|
validates :user, presence: true
|
31
36
|
|
@@ -5,5 +5,5 @@
|
|
5
5
|
|
6
6
|
- if organization.persisted?
|
7
7
|
%h2 Representatives
|
8
|
-
- datatable = Admin::EffectiveRepresentativesDatatable.new(
|
8
|
+
- datatable = Admin::EffectiveRepresentativesDatatable.new(organization: organization)
|
9
9
|
= render_inline_datatable(datatable)
|
@@ -1,10 +1,10 @@
|
|
1
1
|
%h2 Organizations
|
2
2
|
|
3
3
|
- if current_user.organizations.present?
|
4
|
-
%p You
|
4
|
+
%p You are a representative for #{pluralize(current_user.organizations.length, 'organization')}.
|
5
5
|
|
6
6
|
- datatable = EffectiveResources.best('EffectiveOrganizationsDatatable').new(self, namespace: :effective)
|
7
|
-
= render_datatable(datatable)
|
7
|
+
= render_datatable(datatable, simple: true)
|
8
8
|
|
9
9
|
- else
|
10
|
-
%p You
|
10
|
+
%p You are not a representative. When you create an organization, or if someone else adds you to their organization, we'll show them here.
|
@@ -5,9 +5,11 @@ class CreateEffectiveOrganizations < ActiveRecord::Migration[6.0]
|
|
5
5
|
t.string :title
|
6
6
|
|
7
7
|
t.string :category
|
8
|
+
t.string :email
|
8
9
|
t.text :notes
|
9
10
|
|
10
|
-
t.integer
|
11
|
+
t.integer :roles_mask
|
12
|
+
t.integer :representatives_count, default: 0
|
11
13
|
|
12
14
|
t.datetime :updated_at
|
13
15
|
t.datetime :created_at
|
@@ -18,6 +20,7 @@ class CreateEffectiveOrganizations < ActiveRecord::Migration[6.0]
|
|
18
20
|
# Representatives
|
19
21
|
create_table :representatives do |t|
|
20
22
|
t.integer :organization_id
|
23
|
+
t.string :organization_type
|
21
24
|
|
22
25
|
t.integer :user_id
|
23
26
|
t.string :user_type
|
@@ -28,7 +31,7 @@ class CreateEffectiveOrganizations < ActiveRecord::Migration[6.0]
|
|
28
31
|
t.datetime :created_at
|
29
32
|
end
|
30
33
|
|
31
|
-
add_index :representatives, [:organization_id]
|
34
|
+
add_index :representatives, [:organization_id, :organization_type]
|
32
35
|
add_index :representatives, [:user_id, :user_type]
|
33
36
|
|
34
37
|
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: effective_organizations
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0
|
4
|
+
version: 0.2.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Code and Effect
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2022-01-20 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rails
|