class Base::CidadesController < ApplicationController
	include ControllerConcern
	before_action :authenticate_usuario!

	def index
		render json: Base::Cidade.where( estado_id: params[:id] ).order( :nome ), methods: :nome
	end
end
