Method: Fastlane::Actions::AppaloosaAction.get_uploaded_links
- Defined in:
- fastlane/lib/fastlane/actions/appaloosa.rb
.get_uploaded_links(uploaded_screenshots, api_key, store_id) ⇒ Object
73 74 75 76 77 78 79 |
# File 'fastlane/lib/fastlane/actions/appaloosa.rb', line 73 def self.get_uploaded_links(uploaded_screenshots, api_key, store_id) return if uploaded_screenshots.nil? urls = [] urls << uploaded_screenshots.flatten.map do |url| get_s3_url(api_key, store_id, url) end end |