You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
477 B
17 lines
477 B
module Legacy
|
|
class UsersController < Legacy::ApplicationController
|
|
def show; end
|
|
|
|
# private
|
|
# # Use callbacks to share common setup or constraints between actions.
|
|
# def set_district
|
|
# @district = District.find(params[:id])
|
|
# end
|
|
#
|
|
# # Never trust parameters from the scary internet, only allow the white list through.
|
|
# def district_params
|
|
# params.require(:district).permit(:name, :state_id)
|
|
# end
|
|
end
|
|
end
|