phcpresspro 34.0.0 → 34.0.1

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: 4d8ea4558cba197c2baa6a0180c38767e8c4ed8cf4a727b8c01042b8a176b87f
4
- data.tar.gz: f92fcc119caacac87f93fc80d413ad44f43d89c0bf655cbe7e7edd57fca938b7
3
+ metadata.gz: 458ca879845b95fcf400efed41ae6d63e7a5440892fbccbc49f36746ba1424a5
4
+ data.tar.gz: fbb09fcd7fc9b1cd7d6fded7d437357a0ca511dbbce5897bb0d713926b70ea24
5
5
  SHA512:
6
- metadata.gz: 78e3945e2616ba696c1eb44c0ae219a488fc2c683900fa50af6da1a92743b2de6b45487868c72a67c08fd7e0910c398bdfa215183177e4abe9075a489aadbe6f
7
- data.tar.gz: 802f2d1ad32bedddc7fe18f22f96222fbc659216a8608530899dcc1f6be6f0f8df53236c1d77a52ff17b0de782ea8efefae85d7d274bd69669f03dfe7c6d1ab4
6
+ metadata.gz: 30090e2a94d48e96baf344216ab9a29dae6f2704aa9bffec44d5563865a3b96ab0e5a0ec4e832b148a1a9ad77a90619e85f30043a1dd280a81cde158c3b1d134
7
+ data.tar.gz: 2724842142395d47ee25f02b69b26a40ee47491e7175410ab8dac476bd2e861aee2071b147a7ee136eadf1233140329f25a9e9ea92c1a1464ec356d3e4277aee
@@ -8,7 +8,7 @@ module Phcpresspro
8
8
 
9
9
  # Article Category API
10
10
  def index
11
- @modules_categories = Modules::Category.where(org_id: current_user.org_id).order('catname ASC')
11
+ @modules_categories = Modules::Category.order('catname ASC')
12
12
  end
13
13
 
14
14
  end
@@ -8,12 +8,12 @@ module Phcpresspro
8
8
 
9
9
  # Article Category API
10
10
  def index
11
- @article_posts = Article::Post.where(org_id: current_user.org_id, pststatus: 'published').order('created_at ASC')
11
+ @article_posts = Article::Post.where(pststatus: 'published').order('created_at ASC')
12
12
  end
13
13
 
14
14
  # Article Show
15
15
  def show
16
- @article_post = Article::Post.where(org_id: current_user.org_id, pststatus: 'published').find(params[:id])
16
+ @article_post = Article::Post.where(pststatus: 'published').find(params[:id])
17
17
  end
18
18
 
19
19
  end
@@ -1,3 +1,3 @@
1
1
  module Phcpresspro
2
- VERSION = "34.0.0"
2
+ VERSION = "34.0.1"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: phcpresspro
3
3
  version: !ruby/object:Gem::Version
4
- version: 34.0.0
4
+ version: 34.0.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - BradPotts