OpenProject is the leading open source project management software.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
openproject/app/models/activities/event.rb

16 lines
514 B

module Activities
Event = Struct.new(:provider,
:event_name,
:event_title,
:event_description,
:author_id,
:event_author,
:event_datetime,
:journable_id,
:project_id,
:project,
:event_type,
:event_path,
:event_url,
keyword_init: true)
end