summaryrefslogtreecommitdiff
path: root/app/controllers/locations_controller.rb
blob: 4616c3d78335514cdeada9cffd0b4f9228adee45 (plain)
1
2
3
4
5
6
7
8
9
class LocationsController < ApplicationController
  def index
    @locations = Location.all
  end

  def show
    @location = Location.find(params[:id])
  end
end