Files
fizzy/app/controllers/events_controller.rb
T
Jorge Manrubia 5896a21499 Support filter by collection in different screens
We want to filter in the same screen for cards/events but not when viewing a card or from other screens. This adds a controller action to flag the actions where this is supported
2025-08-21 14:19:13 +02:00

9 lines
143 B
Ruby

class EventsController < ApplicationController
include DayTimelinesScoped
enable_collection_filtering only: :index
def index
end
end