bullet_train-api 1.6.17 → 1.6.19

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: 7cb7d2abed49f53b4f9545faf53bf7b03f94211cbc7622ee245dcf75ab2505e9
4
- data.tar.gz: 59feb7b3274b588bd9ad3da1724cd0c5ee41b957ab71c73e761368bf806f210c
3
+ metadata.gz: 84373a03f77c914967fd650b9befff6d04ed649b988e285bd3bef8ba18dfbba5
4
+ data.tar.gz: 91ccec5092ff10edf2693586d396a77ac104981d85797a866e783371d215b6ab
5
5
  SHA512:
6
- metadata.gz: a8f2810869d0a1dfaec9b06b01ed00dba65f2f1f5e8429dd9614d092d1721f2baa6dc635acb57016bb473b86c98dab8e26b7ac9723bd921a2bec1ad31fadae00
7
- data.tar.gz: 2be624ce124e614d16ea485f42d026fa1f6bfbc0428ac045dd15d067ebd35ddf4ce54fc54eb465988f1701f780a38832bfe2bcb0251104a8c514264a7dfcedc6
6
+ metadata.gz: ac0200cd4b4e88a9c80da53bb703f5587237b58914cdb33016559167656f6d8d61ce065c32d8c1f50b76e2e5b8acb91356a5588a5045a75e0cbb6384c76f1c6d
7
+ data.tar.gz: 6fd807efe493ac5f649cf067d0389db3043f254c29f2a71fb1bd9266c1da76f8120ad981bb757121f94dc7386be356383dcafa141f7b728f7c346e620a9714f8
@@ -0,0 +1,6 @@
1
+ # This is a default implementation of this file that we supply to help with gem tests.
2
+ # The version from the starter repo will take precedence when running the full app.
3
+ # You can think of the file in the starter repo as having been ejected from this gem.
4
+ class Api::V1::ApplicationController < ActionController::API
5
+ include Api::Controllers::Base
6
+ end
@@ -0,0 +1,24 @@
1
+ # This is a default implementation of this file that we supply to help with gem tests.
2
+ # The version from the starter repo will take precedence when running the full app.
3
+ # You can think of the file in the starter repo as having been ejected from this gem.
4
+ class Api::V1::TeamsController < Api::V1::ApplicationController
5
+ include Api::V1::Teams::ControllerBase
6
+
7
+ private
8
+
9
+ def permitted_fields
10
+ [
11
+ # 🚅 super scaffolding will insert new fields above this line.
12
+ ]
13
+ end
14
+
15
+ def permitted_arrays
16
+ {
17
+ # 🚅 super scaffolding will insert new arrays above this line.
18
+ }
19
+ end
20
+
21
+ def process_params(strong_params)
22
+ strong_params
23
+ end
24
+ end
@@ -0,0 +1,24 @@
1
+ # This is a default implementation of this file that we supply to help with gem tests.
2
+ # The version from the starter repo will take precedence when running the full app.
3
+ # You can think of the file in the starter repo as having been ejected from this gem.
4
+ class Api::V1::UsersController < Api::V1::ApplicationController
5
+ include Api::V1::Users::ControllerBase
6
+
7
+ private
8
+
9
+ def permitted_fields
10
+ [
11
+ # 🚅 super scaffolding will insert new fields above this line.
12
+ ]
13
+ end
14
+
15
+ def permitted_arrays
16
+ {
17
+ # 🚅 super scaffolding will insert new arrays above this line.
18
+ }
19
+ end
20
+
21
+ def process_params(strong_params)
22
+ strong_params
23
+ end
24
+ end
@@ -1,5 +1,5 @@
1
1
  module BulletTrain
2
2
  module Api
3
- VERSION = "1.6.17"
3
+ VERSION = "1.6.19"
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: bullet_train-api
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.6.17
4
+ version: 1.6.19
5
5
  platform: ruby
6
6
  authors:
7
7
  - Andrew Culver
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2023-11-20 00:00:00.000000000 Z
11
+ date: 2023-11-22 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: standard
@@ -179,7 +179,10 @@ files:
179
179
  - app/controllers/account/platform/access_tokens_controller.rb
180
180
  - app/controllers/account/platform/applications_controller.rb
181
181
  - app/controllers/api/open_api_controller.rb
182
+ - app/controllers/api/v1/application_controller.rb
182
183
  - app/controllers/api/v1/platform/access_tokens_controller.rb
184
+ - app/controllers/api/v1/teams_controller.rb
185
+ - app/controllers/api/v1/users_controller.rb
183
186
  - app/controllers/concerns/api/controllers/base.rb
184
187
  - app/controllers/concerns/api/v1/invitations/controller_base.rb
185
188
  - app/controllers/concerns/api/v1/memberships/controller_base.rb