class Decidim::Meetings::MeetingSearch

def initialize(options = {})

per_page - The number of proposals to return per page.
page - The page number to paginate the results.
component - A Decidim::Component to get the meetings from.
Public: Initializes the service.
def initialize(options = {})
  scope = options.fetch(:scope, Meeting.all)
  super(scope, options)
end