Files
fizzy/app/controllers/landings_controller.rb
T
2025-11-05 19:00:50 +01:00

10 lines
203 B
Ruby

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