bullet_train-api 1.6.18 → 1.6.19

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: 84373a03f77c914967fd650b9befff6d04ed649b988e285bd3bef8ba18dfbba5
4
+ data.tar.gz: 91ccec5092ff10edf2693586d396a77ac104981d85797a866e783371d215b6ab
5
5
  SHA512:
6
- metadata.gz: 610dc7b5b38fb9ade6edc8616800de7936da97313ce47b8649d6a5cbf2fee077072a4240c7ecdcf63390c25aaed2a804ce3061780b8b9cde46a51b82aacda3de
7
- data.tar.gz: 94e37252cdefd545ea69f4ab886e6494d8e07d242674b7895867dde575615324b5408aca4364057af80a0536241102979f6386d9d84bfc095f5d10286f817df5
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.18"
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.18
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-21 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