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:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 84373a03f77c914967fd650b9befff6d04ed649b988e285bd3bef8ba18dfbba5
|
4
|
+
data.tar.gz: 91ccec5092ff10edf2693586d396a77ac104981d85797a866e783371d215b6ab
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
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
|
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.
|
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-
|
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
|