cats_core 1.0.3 → 1.0.4

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: 49ed88fd27d58f00d08ca4d5d4bb0bdfce88a64f2fd62aaf4e20abd735363e10
4
- data.tar.gz: e2cfc27e02352ab0d8e000820840b2f14cc48b058d72a8a625c8a832866fe296
3
+ metadata.gz: 2d2e957d3c24b295e163776c3ecd67c21e16877687a0c2f4682be641ea2278a5
4
+ data.tar.gz: 1230cf3469e3a2943cad4e91d229e5aefb110f84e459b741022e28d91b099c62
5
5
  SHA512:
6
- metadata.gz: f295597bd16a8d23ebfa3baccaface0012d3bfd0da5a2800d17f73707f7f85e17b269bd262ab41d4c4b47197d8d3fca22397340d0534c3ba32d17d03316ff08e
7
- data.tar.gz: 9a2db31a794fbdc872f7e7a9b961ae80a887c1edaf54fa7d485bbc935807967afe26b3a6091e1416af6b195397f861dcbeb36d1c2196aca13f0f6184eda4d0b0
6
+ metadata.gz: f0b8e1139d6a14e4afc0c49914b2d1cc1f9fe4e6e180410cb15368160f7705ab76665bb8805f37d538207f14d92126a20a70cc7ccbce1b6c4380025a15f06a30
7
+ data.tar.gz: 9e1dc4a4ecfd31ce032e64111a5d0d21f4c89a70e0732cfcba688e1e90804e2a9c8cea50ec8a602b7d73fed7d968117ea83c44a0538e436bc4584513823e0b61
@@ -0,0 +1,7 @@
1
+ module Cats
2
+ module Core
3
+ class Notification < ApplicationRecord
4
+ belongs_to :recipient, polymorphic: true
5
+ end
6
+ end
7
+ end
@@ -6,6 +6,7 @@ module Cats
6
6
 
7
7
  belongs_to :application_module
8
8
  has_and_belongs_to_many :roles, join_table: :cats_core_users_cats_core_roles
9
+ has_many :notifications, as: :recipient
9
10
 
10
11
  validates :first_name, :last_name, :email, presence: true
11
12
  validates :password, length: { minimum: 6 }
@@ -0,0 +1,13 @@
1
+ class CreateCatsCoreNotifications < ActiveRecord::Migration[6.1]
2
+ def change
3
+ create_table :cats_core_notifications do |t|
4
+ t.references :recipient, polymorphic: true, null: false
5
+ t.string :type
6
+ t.jsonb :params
7
+ t.datetime :read_at
8
+
9
+ t.timestamps
10
+ end
11
+ add_index :cats_core_notifications, :read_at
12
+ end
13
+ end
@@ -1,5 +1,5 @@
1
1
  module Cats
2
2
  module Core
3
- VERSION = '1.0.3'.freeze
3
+ VERSION = '1.0.4'.freeze
4
4
  end
5
5
  end
@@ -0,0 +1,8 @@
1
+ FactoryBot.define do
2
+ factory :notification, class: 'Cats::Core::Notification' do
3
+ recipient factory: :user
4
+ type { nil }
5
+ params { {} }
6
+ read_at { Date.today }
7
+ end
8
+ end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: cats_core
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.3
4
+ version: 1.0.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - Henock L.
@@ -52,6 +52,20 @@ dependencies:
52
52
  - - "~>"
53
53
  - !ruby/object:Gem::Version
54
54
  version: 2.2.3
55
+ - !ruby/object:Gem::Dependency
56
+ name: noticed
57
+ requirement: !ruby/object:Gem::Requirement
58
+ requirements:
59
+ - - ">="
60
+ - !ruby/object:Gem::Version
61
+ version: '0'
62
+ type: :runtime
63
+ prerelease: false
64
+ version_requirements: !ruby/object:Gem::Requirement
65
+ requirements:
66
+ - - ">="
67
+ - !ruby/object:Gem::Version
68
+ version: '0'
55
69
  - !ruby/object:Gem::Dependency
56
70
  name: rails
57
71
  requirement: !ruby/object:Gem::Requirement
@@ -198,6 +212,7 @@ files:
198
212
  - app/models/cats/core/location.rb
199
213
  - app/models/cats/core/menu.rb
200
214
  - app/models/cats/core/menu_item.rb
215
+ - app/models/cats/core/notification.rb
201
216
  - app/models/cats/core/program.rb
202
217
  - app/models/cats/core/role.rb
203
218
  - app/models/cats/core/role_menu.rb
@@ -228,6 +243,7 @@ files:
228
243
  - db/migrate/20210718045516_create_cats_core_way_bills.rb
229
244
  - db/migrate/20210718050751_create_cats_core_way_bill_items.rb
230
245
  - db/migrate/20210718202957_create_cats_core_commodity_transactions.rb
246
+ - db/migrate/20210724074657_create_cats_core_notifications.rb
231
247
  - lib/cats/core.rb
232
248
  - lib/cats/core/engine.rb
233
249
  - lib/cats/core/version.rb
@@ -241,6 +257,7 @@ files:
241
257
  - spec/factories/cats/core/locations.rb
242
258
  - spec/factories/cats/core/menu_items.rb
243
259
  - spec/factories/cats/core/menus.rb
260
+ - spec/factories/cats/core/notifications.rb
244
261
  - spec/factories/cats/core/programs.rb
245
262
  - spec/factories/cats/core/role_menus.rb
246
263
  - spec/factories/cats/core/roles.rb