dawarich/app/controllers/home_controller.rb

10 lines
214 B
Ruby
Raw Normal View History

2024-05-23 14:12:23 -04:00
# frozen_string_literal: true
2023-10-21 06:43:31 -04:00
class HomeController < ApplicationController
def index
2024-05-23 14:12:23 -04:00
redirect_to map_url if current_user
2024-03-15 18:27:31 -04:00
2024-05-25 14:50:25 -04:00
@points = current_user.tracked_points.without_raw_data if current_user
2023-10-21 06:43:31 -04:00
end
end