ish_models 0.0.33.116 → 0.0.33.121

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: f09269340d4d6c43b23eb5a247f31f95e10290cfee4e9a981b126cd7e7cddaee
4
- data.tar.gz: 6715248105e5d4ba8d9e6ef974a0100fa652bfb1535255ed1d3aa917697106aa
3
+ metadata.gz: 4b574fae4d9d623f6a4c607caf3282693b8eab0b4e1c1a96680b96f5c1c9596f
4
+ data.tar.gz: 9f02341af99ebd3a6c3cd94e30b4241a8d67ca77e73db7514d72a300dd635e52
5
5
  SHA512:
6
- metadata.gz: 7339a428e96136098e4be1555a0e9165b63da47dec007eeac7ed5dd42da54446d86c432cdf4b942112f47269b8ddb217fc4116ebdeefbf67b0f5eb86b7f53f8e
7
- data.tar.gz: 217a2df35598decbe933e7eb6485db97fb792f76061f271682007d02d6616ebccac87eb4dbaa2b58fa6ac6183b7112dd7d28e12a59550e6b07372a3f3d2cdcf0
6
+ metadata.gz: fd264b75c5a2c013bb028005c1bfb3e0440837c36248cb4c5902b440010bfc4f92e92c6983c7896557fd9570513f8c7993f7dff200049eb527f5b13aa879877d
7
+ data.tar.gz: 879928f0e97a2db21dc54ce929e273a77cc0eeec515122256479f9c505b9dc66599dfce118489c77f2f5dcf29025f41fed5e3ad73fa7d4a57b1250bfa51153c6
@@ -27,7 +27,7 @@ class City
27
27
  has_many :reports
28
28
  has_many :venues
29
29
  has_many :videos
30
- has_many :tags
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
@@ -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
- belongs_to :tag, :optional => true
52
+ has_and_belongs_to_many :tags
51
53
  belongs_to :city, :optional => true
52
54
  belongs_to :venue, :optional => true
53
55
 
@@ -107,8 +109,8 @@ class Gallery
107
109
 
108
110
  field :issue
109
111
 
110
- RENDER_TITLES = 'gallery_render_titles_const' # string b/c transmited over http
111
- RENDER_THUMBS = 'gallery_render_thumbs_const' # string b/c transmited over http
112
+ RENDER_TITLES = 'index_titles' # view name
113
+ RENDER_THUMBS = 'index_thumbs' # view name
112
114
 
113
115
  belongs_to :newsparent, polymorphic: true, optional: true
114
116
 
@@ -31,6 +31,8 @@ class Newsitem
31
31
  field :downvoting_users, :type => Array, :default => []
32
32
  field :is_feature, :type => Boolean, :default => false
33
33
 
34
+ PER_PAGE = 6
35
+
34
36
  default_scope ->{ order_by({ :created_at => :desc }) }
35
37
 
36
38
  def self.from_params item
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 })
@@ -43,6 +43,8 @@ class Venue
43
43
  embeds_many :newsitems
44
44
  embeds_many :features
45
45
 
46
+ PER_PAGE = 6
47
+
46
48
  def self.list conditions = { :is_trash => false }
47
49
  out = self.where( conditions).order_by( :name => :asc )
48
50
  [['', nil]] + out.map { |item| [ item.name, item.id ] }
@@ -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
- belongs_to :tag, :optional => true
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, :tag, :city
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 ] }
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: ish_models
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.33.116
4
+ version: 0.0.33.121
5
5
  platform: ruby
6
6
  authors:
7
7
  - piousbox