<%= link_to "New Consumer App", new_admin_consumer_app_path, class: "crayons-btn float-right" %>

Consumer Apps

Consumer apps are standalone mobile apps that users can use to browse <%= Settings::Community.community_name %> as an alternative to web browsers.

If the app is listed as operational, it means <%= Settings::Community.community_name %> will be able to deliver push notifications directly to users' devices.

<% @apps.each do |app| %> <% if app.auth_credentials.present? %> <% else %> <% end %> <% if app.operational? %> <% else %> <% end %> <% end %>
App Bundle Platform Devices Authentication Key Operational Actions
<%= app.app_bundle %> <%= Device.platforms[app.platform] %> <%= app.devices.count %> <% if app.forem_app? %> Forem apps are supported by default and can't be modified. <% else %> <%= link_to "Edit", edit_admin_consumer_app_path(app), class: "crayons-btn crayons-btn--outlined" %> <%= link_to "Destroy", admin_consumer_app_path(app), class: "crayons-btn crayons-btn--danger", method: :delete, data: { confirm: "Are you sure?" } %> <% end %>