class School::UsStatesController < ApplicationController
  skip_before_action :authenticate_request!
  skip_before_action :enforce_password_reset!
  skip_before_action :enforce_terms_of_service_agreement!

  def index
    render_success :ok, json: states
  end

  private
    def states
      UsState.ordered
    end
end
