phcmembers 1.0.2 → 1.5.0

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
  SHA1:
3
- metadata.gz: 77a32b575ac45aa2f04a6fb943f8ee2acfc6e6ac
4
- data.tar.gz: 67794f76460bb8ada730cbfac51892c005bf7841
3
+ metadata.gz: 50ab070e33349ae6e0c31c384ef89fe3208b8713
4
+ data.tar.gz: 327967080b9669db2b4c325e97d67e327415f17d
5
5
  SHA512:
6
- metadata.gz: 16d35f93b693adda0db8cd43b1d9a35066fc020d9113750618759b1364f2bab9f1a5c540c5cceb66023b128a9c56fd51817a7e4ddf0ce33e60761791ae7f81bf
7
- data.tar.gz: 7f7d289e9dae2160d709ebeba9b2899e4a2fc6802eb0a03ccdd5152c0919a8a3476ea187eb6a6cd540c541e784226f294f5d765543443355dec3b9b12c794efe
6
+ metadata.gz: 714f6d6a3229d98c79e65921b17cb2f1ae849d616b175d7e8867df41ec3df5d72a5d0e03dfae0d1ff1f488d63408a230d09b6ef82fedc0f8e36c99106de5e065
7
+ data.tar.gz: 9def50ba9258497d9df8c900a586ea075cec74e33f81d33369ac57161d1ac57fd3f5b9054ee12a2f6e60b73a6791ca95d2e8e8296ab0dae344f5f64bbb17cb83
@@ -80,7 +80,7 @@ module Phcmembers
80
80
 
81
81
  # White List
82
82
  def members_contact_params
83
- params.require(:members_contact).permit(:mccontactname, :mccompanyname, :mcaddressl1, :mcaddressl2, :mccity, :mcprovince, :mccountry, :mcpostalcode, :mcphone, :mcwebsite, :mcemail, :main_id, :account_id)
83
+ params.require(:members_contact).permit(:mccontactname, :mccompanyname, :mcaddressl1, :mcaddressl2, :mccity, :mcprovince, :mccountry, :mcpostalcode, :mcphone, :mcwebsite, :mcemail, :main_id)
84
84
  end
85
85
 
86
86
  end
@@ -80,7 +80,7 @@ module Phcmembers
80
80
 
81
81
  # White List
82
82
  def members_listing_params
83
- params.require(:members_listing).permit(:mlcontactname, :mlcompanyname, :mladdressl1, :mladdressl2, :mlcity, :mlprovince, :mlcountry, :mlpostalcode, :mlphone, :mlwebsite, :mlemail, :main_id, :account_id)
83
+ params.require(:members_listing).permit(:mlcontactname, :mlcompanyname, :mladdressl1, :mladdressl2, :mlcity, :mlprovince, :mlcountry, :mlpostalcode, :mlphone, :mlwebsite, :mlemail, :main_id)
84
84
  end
85
85
 
86
86
  end
@@ -60,7 +60,7 @@ module Phcmembers
60
60
 
61
61
  # White List
62
62
  def members_main_params
63
- params.require(:members_main).permit(:mfirstname, :mlastname, :mtitle, :memail, :mphone, :mnotes, :account_id)
63
+ params.require(:members_main).permit(:mfirstname, :mlastname, :mtitle, :memail, :mphone, :mnotes)
64
64
  end
65
65
 
66
66
  end
@@ -9,8 +9,6 @@ class CreatePhcmembersMembersMains < ActiveRecord::Migration
9
9
  t.string :mphone
10
10
  t.string :mnotes
11
11
 
12
- t.integer :account_id
13
-
14
12
  t.timestamps null: false
15
13
 
16
14
  end
@@ -15,7 +15,6 @@ class CreatePhcmembersMembersListings < ActiveRecord::Migration
15
15
  t.string :mlemail
16
16
 
17
17
  t.references :main, index: true
18
- t.integer :account_id
19
18
 
20
19
  t.timestamps null: false
21
20
 
@@ -13,9 +13,7 @@ class CreatePhcmembersMembersContacts < ActiveRecord::Migration
13
13
  t.string :mcphone
14
14
  t.string :mcemail
15
15
 
16
- t.string :mctype
17
16
  t.references :main, index: true
18
- t.integer :account_id
19
17
 
20
18
  t.timestamps null: false
21
19
 
@@ -3,8 +3,6 @@ class CreatePhcmembersDirectoryCategories < ActiveRecord::Migration
3
3
  create_table :phcmembers_directory_categories do |t|
4
4
 
5
5
  t.string :catname
6
-
7
- t.integer :account_id
8
6
 
9
7
  t.timestamps null: false
10
8
 
@@ -6,8 +6,6 @@ class CreatePhcmembersDirectoryCatlists < ActiveRecord::Migration
6
6
  t.integer :subcategory_id
7
7
  t.integer :listing_id
8
8
 
9
- t.integer :account_id
10
-
11
9
  t.timestamps null: false
12
10
 
13
11
  end
@@ -1,3 +1,3 @@
1
1
  module Phcmembers
2
- VERSION = "1.0.2"
2
+ VERSION = "1.5.0"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: phcmembers
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.2
4
+ version: 1.5.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - BradPotts