effective_organizations 0.1.0 → 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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 0ed8ea76f6be605f32e951431171d7be4d5c9885adf3adaa51ebd223ad2faa95
4
- data.tar.gz: '08a0fa735dc997d95203d90abd6c5657855b6e957b00802800222cf8cfe00d5c'
3
+ metadata.gz: f389ae4c41e7cdfdad7b45438d609e856120588a41349f646d01642a05b201fe
4
+ data.tar.gz: 154421f7cf8f595dbd94e97e58d6518e7ee7669e6c2215772430387076b12650
5
5
  SHA512:
6
- metadata.gz: 31c96c8af942654f9d314326363228f2cead96f47cd0f7e32f256d7a2362e7e5601bdeb35be78c5bf102c8bfa21d6adfe61664cb991e1d10effe2de937aeef36
7
- data.tar.gz: 62ebff63f53a735bb6d185648611d40f717dd469ea03f7f5cb62be5c6027d0248f10f77a38fc8ae2f8bea82d3c2eac9887ead68d847c8fffecaf71032d83d399
6
+ metadata.gz: cadde1ce5c1f15a34d597cdf4ad85d6c5db65f4cd4e4e91cb121d38d91a6c4a2acd445489619d0525e50d919c514127a8f222cdc26c11d997b971d18f25b847b
7
+ data.tar.gz: e79c2db21ecb241094104e5624c0d5816e2d4ddaab9009b2071678b3dfac5b47a99694b1d466bc83a883d3b96f88bff85bc5d8fefbbe8c5e90ef8bbae4e14e57
@@ -5,8 +5,10 @@ class EffectiveRepresentativesDatatable < Effective::Datatable
5
5
  col :organization
6
6
  col :user
7
7
 
8
- col :email do |representative|
9
- mail_to(representative.user.email)
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
@@ -32,6 +32,8 @@ module EffectiveOrganizationsOrganization
32
32
 
33
33
  effective_resource do
34
34
  title :string
35
+ email :string
36
+
35
37
  category :string
36
38
 
37
39
  notes :text
@@ -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(organization_id: organization.id, organization_type: organization.class.name)
8
+ - datatable = Admin::EffectiveRepresentativesDatatable.new(organization: organization)
9
9
  = render_inline_datatable(datatable)
@@ -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 :representatives_count, default: 0
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
@@ -1,3 +1,3 @@
1
1
  module EffectiveOrganizations
2
- VERSION = '0.1.0'.freeze
2
+ VERSION = '0.2.0'.freeze
3
3
  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.1.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: 2022-01-11 00:00:00.000000000 Z
11
+ date: 2022-01-20 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rails