Skip to content

Commit

Permalink
Merge pull request #53 from atomicjolt/ds/pns-tracking
Browse files Browse the repository at this point in the history
Add column to track when we registered pns notifications
  • Loading branch information
dspencer001 authored Jul 5, 2024
2 parents 0506ba1 + a99009c commit 6291e77
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 4 deletions.
10 changes: 7 additions & 3 deletions Gemfile.lock
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
PATH
remote: .
specs:
atomic_tenant (1.2.2)
atomic_tenant (1.3.0)
atomic_lti (~> 1.3)
rails (~> 7.0)

Expand Down Expand Up @@ -82,7 +82,7 @@ GEM
minitest (>= 5.1)
mutex_m
tzinfo (~> 2.0)
atomic_lti (1.8.0)
atomic_lti (1.9.0)
pg (~> 1.3)
rails (~> 7.0)
base64 (0.2.0)
Expand Down Expand Up @@ -124,11 +124,13 @@ GEM
net-smtp (0.5.0)
net-protocol
nio4r (2.7.3)
nokogiri (1.16.6-arm64-darwin)
racc (~> 1.4)
nokogiri (1.16.6-x86_64-darwin)
racc (~> 1.4)
nokogiri (1.16.6-x86_64-linux)
racc (~> 1.4)
pg (1.5.4)
pg (1.5.6)
psych (5.1.2)
stringio
racc (1.8.0)
Expand Down Expand Up @@ -181,6 +183,7 @@ GEM
actionpack (>= 5.2)
activesupport (>= 5.2)
sprockets (>= 3.0.0)
sqlite3 (1.6.3-arm64-darwin)
sqlite3 (1.6.3-x86_64-darwin)
sqlite3 (1.6.3-x86_64-linux)
stringio (3.1.1)
Expand All @@ -195,6 +198,7 @@ GEM
zeitwerk (2.6.16)

PLATFORMS
arm64-darwin-23
x86_64-darwin-22
x86_64-linux

Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
class AddAtomicTenantLtiDeploymentPlatformNotificationStatus < ActiveRecord::Migration[7.1]
def change
add_column :atomic_tenant_lti_deployments, :registered_pns_notifications_at, :timestamptz
end
end
2 changes: 1 addition & 1 deletion lib/atomic_tenant/version.rb
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
module AtomicTenant
VERSION = '1.2.2'
VERSION = '1.3.0'
end

0 comments on commit 6291e77

Please sign in to comment.