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

10 lines
220 B
Ruby

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