class Support::IsoCountriesController < Support::ApplicationController
  skip_before_action :require_permissions!

  def index
    render_success :ok, json: IsoCountry.ordered
  end
end
