Files
fizzy/app/controllers/landings_controller.rb
T
2025-11-05 13:31:54 +01:00

10 lines
205 B
Ruby

class LandingsController < ApplicationController
def show
if Current.user.boards.one?
redirect_to board_path(Current.user.boards.first)
else
redirect_to events_path
end
end
end