Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[spaceship] Adding builds attribute to BetaTester model #18923

Merged
merged 1 commit into from Jun 23, 2021
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
4 changes: 3 additions & 1 deletion spaceship/lib/spaceship/connect_api/models/beta_tester.rb
Expand Up @@ -13,6 +13,7 @@ class BetaTester
attr_accessor :apps
attr_accessor :beta_groups
attr_accessor :beta_tester_metrics
attr_accessor :builds

attr_mapping({
"firstName" => "first_name",
Expand All @@ -23,7 +24,8 @@ class BetaTester

"apps" => "apps",
"betaGroups" => "beta_groups",
"betaTesterMetrics" => "beta_tester_metrics"
"betaTesterMetrics" => "beta_tester_metrics",
"builds" => "builds"
})

def self.type
Expand Down