summaryrefslogtreecommitdiff
path: root/app/controllers/home_controller.rb
blob: 56faebf77c665ffe92d9ead558ccf713e9af432a (plain)
1
2
3
4
5
6
7
class HomeController < ApplicationController
  def index
    @licenses = License.all
    @companies = Company.all
    @locations = Location.all
  end
end