dawarich/app/controllers/home_controller.rb

10 lines
175 B
Ruby
Raw Normal View History

2023-10-21 06:43:31 -04:00
class HomeController < ApplicationController
def index
2024-03-15 18:27:31 -04:00
if current_user
redirect_to points_url
end
@points = current_user.points if current_user
2023-10-21 06:43:31 -04:00
end
end