5896a21499
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
9 lines
143 B
Ruby
9 lines
143 B
Ruby
class EventsController < ApplicationController
|
|
include DayTimelinesScoped
|
|
|
|
enable_collection_filtering only: :index
|
|
|
|
def index
|
|
end
|
|
end
|