Files
fizzy/app/controllers/landings_controller.rb
2025-12-20 18:04:56 -06:00

12 lines
236 B
Ruby

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