bullet_train-api 1.0.16 → 1.0.17

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: d0157f585b4b46527c96b9e0fd98d29b2a86c39df341e8158e0ba4b0843a415f
4
- data.tar.gz: a930f8262c209e4707eb7f5edf14f3c3e1537416359387337b5645356222584e
3
+ metadata.gz: 579b0ef61bdccecc9aef7384511e78b41f4a4ae5a0d4b4a8cda5e6b4a91135f7
4
+ data.tar.gz: 5b6286e17c477d5530e29d15c44c87b1e8b3a661526fc2a0017737abd9de4812
5
5
  SHA512:
6
- metadata.gz: 32183bf8e9287a558bcb9b9982140c1b050370709f551f9fe6bc8a47f012acd51f98a99f70962e4e71a2f40b23fc86406f5f20f5570ef3af4bb6fa1678bc1ec5
7
- data.tar.gz: 6fcce88fc1035aa09f4f55f9ac380ae63de0acc4bb01f3661d9e8a38cd07bc5cfc7a5dd14f41cff082b840251947ddba13d13946c7f96e16fa0315a6a1033b53
6
+ metadata.gz: 9df6fe779f619ed11bcbc60834e579bce3141803b1f1111a62d4bf866bd54ea7ab6c9a4de00e4ac5e0e9a205569a0e7626e56028289004de1e49afbdd9fecae3
7
+ data.tar.gz: a86eb978b33830feb53ff6b99383fab10b41460b0cb5a77d99a9c8279a6255ec409ed3ec1ca2e1f76017889ffe55b179173f2d5a41576dc2723811b53faeb0d9
@@ -0,0 +1,4 @@
1
+ # TODO This serializer only needs to exist because of a limitation in `Api.show_desc` that we use in
2
+ # `app/controllers/api/v1/me_endpoint.rb`. This is the easiest solution at the moment, but we can revisit later.
3
+ class Api::V1::MeSerializer < Api::V1::UserSerializer
4
+ end
@@ -1,5 +1,5 @@
1
1
  module BulletTrain
2
2
  module Api
3
- VERSION = "1.0.16"
3
+ VERSION = "1.0.17"
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.0.16
4
+ version: 1.0.17
5
5
  platform: ruby
6
6
  authors:
7
7
  - Andrew Culver
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2022-05-07 00:00:00.000000000 Z
11
+ date: 2022-05-08 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: standard
@@ -217,6 +217,7 @@ files:
217
217
  - app/controllers/concerns/api/v1/teams/endpoint_base.rb
218
218
  - app/models/platform/application.rb
219
219
  - app/serializers/api/v1/invitation_serializer.rb
220
+ - app/serializers/api/v1/me_serializer.rb
220
221
  - app/serializers/api/v1/membership_serializer.rb
221
222
  - app/serializers/api/v1/team_serializer.rb
222
223
  - app/serializers/api/v1/user_serializer.rb