atomic_admin 2.0.0.beta.7 → 2.0.0

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: 268e28aee4a7ad766ea7e42fa44ad29f728e3c62aad22c4c0a73641c8c719dca
4
- data.tar.gz: e3b6382290536abb08ba86281ecd3454c9882f6273b197f7426a5ee7d8f93841
3
+ metadata.gz: 2f61c067af3651c5e9cb616450922b6f883f1919110f3f4f8c64ae8627ba5a2f
4
+ data.tar.gz: bbb02896c4e7d78c87127952f9d84e62287e999999e37e80a4e779970e57630a
5
5
  SHA512:
6
- metadata.gz: adb2e079c23799e3ad2bd06a972033c3f28133edfc4af8fa87007dd19c7667be9070202423427d9481eeb1e52dc21bc863bfea23c5b4bd3751fde0a6ab8ad664
7
- data.tar.gz: d7792bafe8ee45fc242f76a92d29900dc82b3132ee91b628345b4edfcda1248ea1b528de44815a7840265f335e1bffffc19977e5bc31fdf8d0c4895e74c3af45
6
+ metadata.gz: bd58b8ae57b0fe4e3a9a052ae63b998d8a3f94bc5ddc36181a71f80e9e479634f06b17a9d89eca058f67f7225cc829b7fa89f97312dc42b74d66bc293a600adc
7
+ data.tar.gz: 9a2f7c4122436d1687c626eabab27269a7cc3cf5a950c248c0ced093a4f563a6e215b5b7085a861c5ac00583385c4bdddff0e2ac37992d653011c9f0dc24c153
@@ -9,7 +9,7 @@ module AtomicAdmin::Api::Admin::V0
9
9
  end
10
10
 
11
11
  def index
12
- render json: AtomicLti::Install.all.order(:id).paginate(page: params[:page], per_page: 30)
12
+ render json: AtomicLti::Install.all.order(:id).paginate(page: params[:page], per_page: params[:per_page] || 30)
13
13
  end
14
14
 
15
15
  def create
@@ -9,7 +9,7 @@ module AtomicAdmin::Api::Admin::V0
9
9
  end
10
10
 
11
11
  def index
12
- page = AtomicLti::Platform.all.order(:id).paginate(page: params[:page], per_page: 30)
12
+ page = AtomicLti::Platform.all.order(:id).paginate(page: params[:page], per_page: params[:per_page] || 30)
13
13
 
14
14
  render json: {
15
15
  platforms: page,
@@ -16,7 +16,7 @@ module AtomicAdmin::Api::Admin::V0
16
16
  def search
17
17
  page = AtomicTenant::PinnedClientId
18
18
  .where(application_instance_id: params[:application_instance_id])
19
- .order(:id).paginate(page: params[:page], per_page: 30)
19
+ .order(:id).paginate(page: params[:page], per_page: params[:per_page] || 30)
20
20
  render json: {
21
21
  pinned_client_ids: page,
22
22
  page: params[:page],
@@ -15,7 +15,7 @@ module AtomicAdmin::Api::Admin::V0
15
15
  " ON atomic_tenant_lti_deployments.iss = atomic_lti_deployments.iss"\
16
16
  " AND atomic_tenant_lti_deployments.deployment_id = atomic_lti_deployments.deployment_id").
17
17
  order(:id).
18
- paginate(page: params[:page], per_page: 30)
18
+ paginate(page: params[:page], per_page: params[:per_page] || 30)
19
19
 
20
20
  rows = tenant_deployments.pluck(
21
21
  "atomic_tenant_lti_deployments.id",
@@ -15,7 +15,7 @@ module AtomicAdmin::Api::Admin::V0
15
15
  def search
16
16
  page = AtomicTenant::PinnedPlatformGuid
17
17
  .where(application_instance_id: params[:application_instance_id])
18
- .order(:id).paginate(page: params[:page], per_page: 30)
18
+ .order(:id).paginate(page: params[:page], per_page: params[:per_page] || 30)
19
19
  render json: {
20
20
  pinned_platform_guids: page,
21
21
  page: params[:page],
@@ -1,3 +1,3 @@
1
1
  module AtomicAdmin
2
- VERSION = "2.0.0.beta.7".freeze
2
+ VERSION = "2.0.0".freeze
3
3
  end
metadata CHANGED
@@ -1,14 +1,15 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: atomic_admin
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.0.0.beta.7
4
+ version: 2.0.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Nick Benoit
8
+ - Sean Collings
8
9
  autorequire:
9
10
  bindir: bin
10
11
  cert_chain: []
11
- date: 2026-04-09 00:00:00.000000000 Z
12
+ date: 2026-06-02 00:00:00.000000000 Z
12
13
  dependencies:
13
14
  - !ruby/object:Gem::Dependency
14
15
  name: rails
@@ -30,9 +31,10 @@ dependencies:
30
31
  - - "<"
31
32
  - !ruby/object:Gem::Version
32
33
  version: '9.0'
33
- description: Engine to provide apis that power the atomic jolt admin app
34
+ description: Engine to provide apis that power the Atomic Jolt admin app
34
35
  email:
35
36
  - nick.benoit@atomicjolt.com
37
+ - sean.collings@atomicjolt.com
36
38
  executables: []
37
39
  extensions: []
38
40
  extra_rdoc_files: []
@@ -118,8 +120,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
118
120
  - !ruby/object:Gem::Version
119
121
  version: '0'
120
122
  requirements: []
121
- rubygems_version: 3.5.22
123
+ rubygems_version: 3.4.10
122
124
  signing_key:
123
125
  specification_version: 4
124
- summary: Engine to provide apis that power the atomic jolt admin app
126
+ summary: Engine to provide apis that power the Atomic Jolt admin app
125
127
  test_files: []