wco_models 3.1.0.123 → 3.1.0.124

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: b2cecc70680e060cfb527bb42433e6cec1fb1c086e1780a7cac93db686a8b389
4
- data.tar.gz: 0c11024efcc8aaa5c34e466a44f91d576ffa03c194f4626aadf4af79ed00b779
3
+ metadata.gz: 17fde5a1be7fac2e33f0b5d16d1142f139898f4a3cb82adb8e79adb3e8a5c515
4
+ data.tar.gz: a1709941613b0d2b9b0502dbbff7ff9bbf696ec9344d963a9ac0b9ed5f7ef5bd
5
5
  SHA512:
6
- metadata.gz: 66f61d95a118bf3f56cc5af752a99bc8aa8708f00cf25b73c5b031bd02749a6541d88486e4ff6f1ce3cba6654963efba848f03773bf06780510bb4597f2969f2
7
- data.tar.gz: 659846f1328d37415383ce80201b791c6b76db805588dcfc240ad07f3e5959c02497242b28ac15269c0555153e862144297c414a34a2bb1fb9c37a7256c55b9a
6
+ metadata.gz: 31ba6258ce6bf38b5bcc67a93d307cca48277415ddc417ab776922588d0b9016ea0aaab5b77f7a7e5b7af356bef0cb893ab48b39393915466a6101f7ca51c756
7
+ data.tar.gz: 537b141c95b977d499ed03f6c514402aaebe1cfdeea9a7385be020e19d00df04f9d3e8c05b16c2d6736007cf1bde915ccf0c40559553490de1020c95d611176b
@@ -78,7 +78,7 @@ class Wco::GalleriesController < Wco::ApplicationController
78
78
  def shared_with_me
79
79
  authorize! :index, Wco::Gallery
80
80
  @page_title = 'Galleries Shared With Me'
81
- @galleries = @current_profile.shared_galleries.unscoped.where( :is_trash => false
81
+ @galleries = @current_profile.shared_galleries(
82
82
  ).order_by( :created_at => :desc
83
83
  ).page( params[:shared_galleries_page] ).per( 10 )
84
84
  render params[:render_type]
@@ -24,7 +24,8 @@ class Wco::Gallery
24
24
  field :descr, :as => :description
25
25
 
26
26
  field :is_public, type: Boolean, default: false
27
- # has_and_belongs_to_many :shared_profiles, :class_name => 'Wco::Profile', :inverse_of => :shared_galleries
27
+
28
+ has_and_belongs_to_many :shared_profiles, :class_name => 'Wco::Profile', :inverse_of => :shared_galleries
28
29
 
29
30
  def published
30
31
  where({ :is_public => true }).order_by({ :created_at => :desc })
@@ -30,5 +30,5 @@
30
30
  .Card
31
31
  = form_for item, url: wco.run_publisher_path( item ), method: :post do |f|
32
32
  %label props
33
- = f.text_field :props, class: 'w-400px'
33
+ = f.text_field :props, value: '{}', class: 'w-400px'
34
34
  = f.submit 'run', data: { confirm: 'Are you sure?' }
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: wco_models
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.1.0.123
4
+ version: 3.1.0.124
5
5
  platform: ruby
6
6
  authors:
7
7
  - Victor Pudeyev
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2024-03-01 00:00:00.000000000 Z
11
+ date: 2024-03-03 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-s3