Method: Spaceship::TestFlight::Group.find
- Defined in:
- spaceship/lib/spaceship/test_flight/group.rb
.find(app_id: nil, group_name: nil) ⇒ Object
44 45 46 47 |
# File 'spaceship/lib/spaceship/test_flight/group.rb', line 44 def self.find(app_id: nil, group_name: nil) groups = self.all(app_id: app_id) groups.find { |g| g.name == group_name } end |