Class: Decidim::Meetings::Meeting

Inherits:
ApplicationRecord show all
Includes:
HasAttachments, HasCategory, HasFeature, HasReference, HasScope, Resourceable
Defined in:
decidim-meetings/app/models/decidim/meetings/meeting.rb

Overview

The data store for a Meeting in the Decidim::Meetings component. It stores a title, description and any other useful information to render a custom meeting.

Instance Method Summary collapse

Instance Method Details

#closed?Boolean

Returns:

  • (Boolean)


21
22
23
# File 'decidim-meetings/app/models/decidim/meetings/meeting.rb', line 21

def closed?
  closed_at.present?
end