bullet_train-api 1.6.18 → 1.6.20

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
  SHA256:
3
- metadata.gz: 17deb5095e46d878603b00090e153b6283f02fa3ad910a727385e757ecc0d25b
4
- data.tar.gz: b3d22d5a4850ceb9fe2535d3855fd29544d0602fa88d22e5c27740e00a6ca502
3
+ metadata.gz: ed900986909577fa41893dcdf279f5a5ec7fbfb7e7e89d0230fb97627c3e9bbb
4
+ data.tar.gz: d1f3c0cb271d3dba5a673b090eff10612f18453e85b29b161bf318965b807d99
5
5
  SHA512:
6
- metadata.gz: 610dc7b5b38fb9ade6edc8616800de7936da97313ce47b8649d6a5cbf2fee077072a4240c7ecdcf63390c25aaed2a804ce3061780b8b9cde46a51b82aacda3de
7
- data.tar.gz: 94e37252cdefd545ea69f4ab886e6494d8e07d242674b7895867dde575615324b5408aca4364057af80a0536241102979f6386d9d84bfc095f5d10286f817df5
6
+ metadata.gz: e3ee2cc2c106ed9dee84b100cee187235c7710bf7a681333dfe056ddbbd41dc0de4e852f42f7f9ed9bce1f291f743cdcb5f6a59d75a7776239e794dd0509984e
7
+ data.tar.gz: 2d25e49c813a670e43e77db8b61206fe40f68487b250c42a3b0988fe5e6574034e560f83c1762ffc05ec7b26e27452aabf0f931d35b374e2869e0d90c67a6caf
@@ -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.18"
3
+ VERSION = "1.6.20"
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.18
4
+ version: 1.6.20
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-21 00:00:00.000000000 Z
11
+ date: 2023-11-29 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