ish_models 0.0.33.245 → 0.0.33.247
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/ish/user_profile.rb +5 -3
- data/lib/ish_models.rb +0 -2
- data/lib/report.rb +1 -0
- 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: 823be62d6f3e6bf6817ef43ebbcefda4c12049f01aedafb95b9fd01a624c6453
|
4
|
+
data.tar.gz: 9b1db16ef558002d83c109426fb41757a4b4892acc3f81a38dbaf130759b23dd
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 2238d1a7cd112636cc58aba0eaaea3534a9cd8bb504b901ebe0b3b2298bb8aba90cba6abd4b5063234063c8d0348290a94e7d8979308c204996929797e991cb3
|
7
|
+
data.tar.gz: b2788efc4ae0447ff65d56aa829164a44ae1e42fa12538a63bcd6802c957568da23763d254cc8b79033eb5d25f358b28c4abf2e485dfe1709f274cb721fdc106
|
data/lib/ish/user_profile.rb
CHANGED
@@ -41,18 +41,20 @@ class Ish::UserProfile
|
|
41
41
|
ROLE_ADMIN = :admin
|
42
42
|
field :role_name, :type => Symbol, default: :guy
|
43
43
|
|
44
|
-
has_one
|
44
|
+
has_one :profile_photo, inverse_of: :profile_city, class_name: 'Photo'
|
45
45
|
has_many :galleries, inverse_of: :user_profile
|
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_reports, inverse_of: :shared_profiles, class_name: '::Report'
|
50
|
+
has_and_belongs_to_many :shared_videos, inverse_of: :shared_profiles, class_name: '::Video'
|
49
51
|
has_many :my_markers, inverse_of: :creator_profile, class_name: 'Gameui::Marker'
|
50
52
|
has_many :my_locations, inverse_of: :creator_profile, class_name: 'Gameui::Map'
|
51
53
|
has_many :invoices, class_name: '::Ish::Invoice'
|
52
54
|
has_many :photos
|
53
55
|
has_many :reports, inverse_of: :user_profile
|
54
|
-
has_many :videos,
|
55
|
-
has_many :newsitems,
|
56
|
+
has_many :videos, inverse_of: :user_profile
|
57
|
+
has_many :newsitems, inverse_of: :profile
|
56
58
|
|
57
59
|
def sudoer?
|
58
60
|
%w( piousbox@gmail.com victor@wasya.co ).include?( self.email )
|
data/lib/ish_models.rb
CHANGED
data/lib/report.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
|
|