bullet_train 1.6.10 → 1.6.11

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: 7bc0e2bd5f94261391e59e37289ec1ed6ec00d08668d027eb29e191b0c9ac8d3
4
- data.tar.gz: e66f59d57f13667a1be66f20e155e08a54756d2188a0e9216865ecff0b29314a
3
+ metadata.gz: bff6a45a565faac32222a58cb41772a3a261dea92141b375ab78e401a4e46d52
4
+ data.tar.gz: b8d5b7931700134781d3a89f0139c335e0d5688a1f8d2b6f2aa3420ca6d46b07
5
5
  SHA512:
6
- metadata.gz: 4bd2e11b8fef8adc2ddcac64a3358b7ff1d367fd097b8d968fd055b230ed15bef146b4113ab61eed652765d4a6da1d31853d13fb5507ea49009489b831db16b9
7
- data.tar.gz: fc2906c42d72faf61821a9aa957ef0766bc8acac5dad53eca72b4ff9c23abd6563b226fdda0a96921e12b1923fe1668a02ad61b96c6db602bca5648b12bb7120
6
+ metadata.gz: 12ab458d7ea3bd7461d24f3707ef2ab73fb021384ddd82044bde9dee49f12ed953b0e87a6f3ec5603c8f3e7a9455bed661dad026ccc94a329164c778e02d0644
7
+ data.tar.gz: 7cc05779a3cc527f9f91316e87fba70b4c58889728a9f9620f5a7a7a7d84b0f4e2de68bfd97f9838ca9dbabb3beb3adafcaa49534e5eeec90e024abdde34b8c5
@@ -16,8 +16,6 @@ module Memberships::Base
16
16
  has_many :scaffolding_completely_concrete_tangible_things_assignments, class_name: "Scaffolding::CompletelyConcrete::TangibleThings::Assignment", dependent: :destroy
17
17
  has_many :scaffolding_completely_concrete_tangible_things, through: :scaffolding_completely_concrete_tangible_things_assignments, source: :tangible_thing
18
18
 
19
- has_many :scaffolding_absolutely_abstract_creative_concepts_collaborators, class_name: "Scaffolding::AbsolutelyAbstract::CreativeConcepts::Collaborator", dependent: :destroy
20
-
21
19
  # Image uploading
22
20
  has_one_attached :user_profile_photo
23
21
 
@@ -20,7 +20,6 @@ module Users::Base
20
20
 
21
21
  # teams
22
22
  has_many :memberships, dependent: :destroy
23
- has_many :scaffolding_absolutely_abstract_creative_concepts_collaborators, through: :memberships
24
23
  has_many :teams, through: :memberships
25
24
  has_many :collaborating_users, through: :teams, source: :users
26
25
  belongs_to :current_team, class_name: "Team", optional: true
@@ -144,22 +143,6 @@ module Users::Base
144
143
  RQRCode::QRCode.new(otp_provisioning_uri(label, issuer: issuer))
145
144
  end
146
145
 
147
- def scaffolding_absolutely_abstract_creative_concepts_collaborators
148
- Scaffolding::AbsolutelyAbstract::CreativeConcepts::Collaborator.joins(:membership).where(membership: {user_id: id})
149
- end
150
-
151
- def admin_scaffolding_absolutely_abstract_creative_concepts_ids
152
- scaffolding_absolutely_abstract_creative_concepts_collaborators.admins.pluck(:creative_concept_id)
153
- end
154
-
155
- def editor_scaffolding_absolutely_abstract_creative_concepts_ids
156
- scaffolding_absolutely_abstract_creative_concepts_collaborators.editors.pluck(:creative_concept_id)
157
- end
158
-
159
- def viewer_scaffolding_absolutely_abstract_creative_concepts_ids
160
- scaffolding_absolutely_abstract_creative_concepts_collaborators.viewers.pluck(:creative_concept_id)
161
- end
162
-
163
146
  def developer?
164
147
  return false unless ENV["DEVELOPER_EMAILS"]
165
148
  # we use email_was so they can't try setting their email to the email of an admin.
@@ -72,7 +72,7 @@ What if you'd instead want to:
72
72
 
73
73
  * Not rely on a custom Stimulus controller to control the `disabled` state of the "Other" field
74
74
  * Show/hide multiple dependent fields based on the value of the `dependable` field.
75
- * Update more than the field itself, but also the value of its `label`. As an example, the [`address_field`](/docs/field-partials/address-field.md) partial shows an empty "State / Province / Region" sub-field by default, and on changing the `:country_id` field to the United States, changes the whole `:region_id` to "State" as its label and with all US States as its choices.
75
+ * Update more than the field itself, but also the value of its `label`. As an example, the [`address_field`](/docs/field-partials/address-field.md) partial shows an empty "State / Province / Region" sub-field by default, and on changing the `:country_id` field to the United States, changes the whole `:region_id` to "State or Territory" as its label and with all US States and territories as its choices.
76
76
 
77
77
  For these situations, Bullet Train has a `dependent_fields_frame` partial that's made to listen to `dependable:updated` events by default.
78
78
 
@@ -120,4 +120,4 @@ We'll move the conditional on the `disabled` property. And we'll also let the `d
120
120
  <% end %>
121
121
  ```
122
122
 
123
- To learn more about its inner functionality, search the `bullet-train-core` repo for `dependable_controller.js`, `dependent_fields_frame_controller.js` and `_dependent_fields_frame.html.erb`. You can also see an implementation by looking at the `_address_field.html.erb` partial.
123
+ To learn more about its inner functionality, search the `bullet-train-core` repo for `dependable_controller.js`, `dependent_fields_frame_controller.js` and `_dependent_fields_frame.html.erb`. You can also see an implementation by looking at the `_address_field.html.erb` partial.
@@ -1,3 +1,3 @@
1
1
  module BulletTrain
2
- VERSION = "1.6.10"
2
+ VERSION = "1.6.11"
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: bullet_train
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.6.10
4
+ version: 1.6.11
5
5
  platform: ruby
6
6
  authors:
7
7
  - Andrew Culver
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2023-11-03 00:00:00.000000000 Z
11
+ date: 2023-11-13 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: standard