* Makes Consumer Apps dictate aasa results * progress with ConsumerApp query * Adds Team ID migration + Stimulus consumer_app_controller.js * Adds cypress tests * Adds Backfill data_update_script + more specs & tweaks * Remove file added by mistake * Comment typo * Small tweaks + improved specs * Update lib/data_update_scripts/20210622145212_backfill_forem_consumer_app_team_id.rb Co-authored-by: Jamie Gaskins <jamie@forem.com> * Update spec/lib/data_update_scripts/backfill_forem_consumer_app_team_id_spec.rb Co-authored-by: rhymes <github@rhymes.dev> * Make use of create! and log errors to ForemStatsClient * Fix specs * Add mock_rpush call as suggested in review * Add Review suggestions * Fix tests * Remove redundant assert in spec Co-authored-by: Jamie Gaskins <jamie@forem.com> Co-authored-by: rhymes <github@rhymes.dev>
19 lines
855 B
Text
19 lines
855 B
Text
<div class="form-group">
|
|
<%= label_tag :app_bundle, "App Bundle:" %>
|
|
<%= text_field_tag :app_bundle, @app.app_bundle, class: "form-control" %>
|
|
</div>
|
|
|
|
<div class="form-group">
|
|
<%= label_tag :platform, "Platform:" %>
|
|
<%= select_tag :platform, options_for_select(ConsumerApp.platforms.invert, selected: @app.platform, class: "crayons-select"), class: "crayons-select", data: { "consumer-app-target" => "platform", "action" => "consumer-app#checkPlatform" } %>
|
|
</div>
|
|
|
|
<div class="form-group">
|
|
<%= label_tag :auth_key, "Authentication Key:" %>
|
|
<%= text_area_tag :auth_key, @app.auth_key, size: "100x10", class: "form-control" %>
|
|
</div>
|
|
|
|
<div class="form-group hidden" data-consumer-app-target="teamId">
|
|
<%= label_tag :team_id, "Team ID (Universal Links Support):" %>
|
|
<%= text_field_tag :team_id, @app.team_id, class: "form-control" %>
|
|
</div>
|