ish_models 0.0.33.115 → 0.0.33.120
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/city.rb +3 -2
- data/lib/gallery.rb +3 -1
- data/lib/newsitem.rb +2 -0
- data/lib/tag.rb +4 -4
- data/lib/venue.rb +2 -0
- data/lib/video.rb +3 -3
- 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: ce91e1d5484fed60fbea81719980ce1313604c1c669f9815c1c9a87e5026120e
|
4
|
+
data.tar.gz: cf6223efbb4562388e9948b928481d46008e3ab3276d37321876688a52e08f78
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 14a5c6b5276806e97e25e656ef6c2be47d89ad4121244361b3f686fc0f37a39358a3324c26142544840709768f3cc4304bd576490ae91fd67adecb8a425b11bd
|
7
|
+
data.tar.gz: f579442e712fa385bb1ddc2c2b95b0dffd21381100f6b45436990cf6b177bfe83c596a042e1685d6c6170e81f8cf8f3786ac3049d710c1d907bca48fd4a2bd64
|
data/lib/city.rb
CHANGED
@@ -16,7 +16,7 @@ class City
|
|
16
16
|
|
17
17
|
field :deleted_at, type: Time
|
18
18
|
def self.all
|
19
|
-
self.where( deleted_at: nil ).order_by( name: :desc )
|
19
|
+
self.where( deleted_at: nil, is_active: true ).order_by( name: :desc )
|
20
20
|
end
|
21
21
|
|
22
22
|
belongs_to :country, :optional => true
|
@@ -27,7 +27,7 @@ class City
|
|
27
27
|
has_many :reports
|
28
28
|
has_many :venues
|
29
29
|
has_many :videos
|
30
|
-
|
30
|
+
has_and_belongs_to_many :tags
|
31
31
|
|
32
32
|
has_many :current_users, :class_name => '::IshModels::UserProfile', :inverse_of => :current_city
|
33
33
|
has_many :newsitems
|
@@ -39,6 +39,7 @@ class City
|
|
39
39
|
embeds_many :features
|
40
40
|
|
41
41
|
field :calendar_frame, :type => String
|
42
|
+
field :is_active, type: Boolean, default: true
|
42
43
|
|
43
44
|
default_scope ->{ order_by({ :name => :asc }) }
|
44
45
|
|
data/lib/gallery.rb
CHANGED
@@ -4,6 +4,8 @@ class Gallery
|
|
4
4
|
include ::Mongoid::Document
|
5
5
|
include ::Mongoid::Timestamps
|
6
6
|
|
7
|
+
PER_PAGE = 6
|
8
|
+
|
7
9
|
field :is_public, type: Boolean, default: false
|
8
10
|
field :is_trash, type: Boolean, default: false
|
9
11
|
|
@@ -47,7 +49,7 @@ class Gallery
|
|
47
49
|
|
48
50
|
has_many :photos
|
49
51
|
|
50
|
-
|
52
|
+
has_and_belongs_to_many :tags
|
51
53
|
belongs_to :city, :optional => true
|
52
54
|
belongs_to :venue, :optional => true
|
53
55
|
|
data/lib/newsitem.rb
CHANGED
data/lib/tag.rb
CHANGED
@@ -16,10 +16,6 @@ class Tag
|
|
16
16
|
|
17
17
|
field :weight, :type => Integer, :default => 10
|
18
18
|
|
19
|
-
has_and_belongs_to_many :reports
|
20
|
-
has_many :galleries
|
21
|
-
has_many :videos
|
22
|
-
|
23
19
|
has_many :children_tags, :class_name => 'Tag', :inverse_of => :parent_tag
|
24
20
|
belongs_to :parent_tag, :class_name => 'Tag', :inverse_of => :children_tags, :optional => true
|
25
21
|
|
@@ -31,6 +27,10 @@ class Tag
|
|
31
27
|
belongs_to :city, :optional => true
|
32
28
|
|
33
29
|
has_and_belongs_to_many :venues
|
30
|
+
has_and_belongs_to_many :cities
|
31
|
+
has_and_belongs_to_many :galleries
|
32
|
+
has_and_belongs_to_many :reports
|
33
|
+
has_and_belongs_to_many :videos
|
34
34
|
|
35
35
|
default_scope ->{
|
36
36
|
where({ :is_public => true, :is_trash => false }).order_by({ :name => :asc })
|
data/lib/venue.rb
CHANGED
data/lib/video.rb
CHANGED
@@ -22,14 +22,14 @@ class Video
|
|
22
22
|
field :youtube_id, :type => String
|
23
23
|
# validates :youtube_id, :uniqueness => true, :presence => true
|
24
24
|
|
25
|
-
|
25
|
+
has_and_belongs_to_many :tags
|
26
26
|
belongs_to :city, :optional => true
|
27
27
|
belongs_to :site, :optional => true
|
28
|
-
has_many :newsitems
|
28
|
+
# has_many :newsitems # unnecessary, right? _vp_ 20200412
|
29
29
|
|
30
30
|
belongs_to :user_profile, :optional => true, :class_name => 'IshModels::UserProfile', :inverse_of => :videos
|
31
31
|
|
32
|
-
accepts_nested_attributes_for :site, :
|
32
|
+
accepts_nested_attributes_for :site, :tags, :city
|
33
33
|
|
34
34
|
def self.list
|
35
35
|
[['', nil]] + Video.unscoped.order_by( :created_at => :desc ).map { |item| [ "#{item.created_at.strftime('%Y%m%d')} #{item.name}", item.id ] }
|