summaryrefslogtreecommitdiff
path: root/app/controllers/home_controller.rb
blob: 59cac59c00e454db53b9da6cab06edaaa1ed0cb2 (plain)
1
2
3
4
5
6
7
class HomeController < ApplicationController
  skip_before_action :authenticate_user!

  def index
    @latest_checkpoints = Checkpoint.last(5).sort_by(&:created_at).reverse
  end
end