ish_models 0.0.33.244 → 0.0.33.246
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/lib/ish/email_context.rb +1 -0
- data/lib/ish/user_profile.rb +1 -0
- data/lib/ish_models.rb +0 -2
- data/lib/video.rb +3 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: c4d9c4a1432222dac50b23ec2b44f805fd7d67bd2c1797218abb86280303343d
|
4
|
+
data.tar.gz: 6cda8b0de6f72e2cfe61579e2590f7d5636daddf68d87e36c6cbc35b5492fe56
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: c11c49f0d877be6f3730a80f467c4de7afb7de52be03679128c0c9d0ee44e62dd4af36b15fd7ee72581aabcaa7ef40ea537ae676ba0612a58430d75232baffe3
|
7
|
+
data.tar.gz: 329d36a6aa69828ef8b129d24a18e8bd1742977ba340e5909b00af634066e9717ea84aed13107b3c5bac5a278f791f4f6252dc42c5a21a60eebca65f24f8dc45
|
data/lib/ish/email_context.rb
CHANGED
@@ -68,6 +68,7 @@ class ::Ish::EmailContext
|
|
68
68
|
Ish::EmailCampaign.from_email_list
|
69
69
|
end
|
70
70
|
|
71
|
+
## like belongs_to to_lead , but Lead is SQL to just the lead_id
|
71
72
|
field :lead_id, type: :integer
|
72
73
|
def lead; Lead.find( lead_id ); end
|
73
74
|
def to_email; lead[:email]; end ## @TODO: remove, just use the lead. _vp_ 2023-03-27
|
data/lib/ish/user_profile.rb
CHANGED
@@ -46,6 +46,7 @@ class Ish::UserProfile
|
|
46
46
|
has_and_belongs_to_many :shared_galleries, inverse_of: :shared_profiles, class_name: 'Gallery'
|
47
47
|
has_and_belongs_to_many :shared_markers, inverse_of: :shared_profiles, class_name: 'Gameui::Marker'
|
48
48
|
has_and_belongs_to_many :shared_locations, inverse_of: :shared_profiles, class_name: 'Gameui::Map'
|
49
|
+
has_and_belongs_to_many :shared_videos, inverse_of: :shared_profiles, class_name: '::Video'
|
49
50
|
has_many :my_markers, inverse_of: :creator_profile, class_name: 'Gameui::Marker'
|
50
51
|
has_many :my_locations, inverse_of: :creator_profile, class_name: 'Gameui::Map'
|
51
52
|
has_many :invoices, class_name: '::Ish::Invoice'
|
data/lib/ish_models.rb
CHANGED
data/lib/video.rb
CHANGED
@@ -38,7 +38,9 @@ class Video
|
|
38
38
|
validates_uniqueness_of :youtube_id, allow_blank: true, case_sensitive: false
|
39
39
|
before_save { youtube_id.present? || youtube_id = nil }
|
40
40
|
|
41
|
-
belongs_to :user_profile,
|
41
|
+
belongs_to :user_profile, :class_name => 'Ish::UserProfile', :inverse_of => :videos
|
42
|
+
has_and_belongs_to_many :shared_profiles, :class_name => 'Ish::UserProfile', :inverse_of => :shared_videos
|
43
|
+
|
42
44
|
|
43
45
|
index({ is_trash: 1, user_profile_id: 1, created_at: 1 }, { name: 'idx1' })
|
44
46
|
|