Top Menu

Jump to content
    Global modules

    Global modules

    • Home
    • Projects
    • Activity
    • Work packages
    • Gantt charts
    • Calendars
    • Team planners
    • Boards
    • News
    Home
    Home
Help
    Getting started
    • Introduction video
  • Help and support
    • Upgrade to Enterprise edition
    • User guides
    • Videos
    • Shortcuts
    • Community forum
    • Enterprise support
  • Additional resources
    • Data privacy and security policy
    • Digital accessibility (DE)
    • OpenProject website
    • Security alerts / Newsletter
    • OpenProject blog
    • Release notes
    • Report a bug
    • Development roadmap
    • Add and edit translations
    • API documentation

User menu

Sign in
Forgot your password?

or sign in with your existing account

OpenProject ID Google

Side Menu

Collapse project menu

  • Overview
  • Activity
    Activity
  • Roadmap
  • Work packages
    Work packages
  • Gantt charts
    Gantt charts
  • Calendars
    Calendars
  • Team planners
    Team planners
  • Boards
    Boards
  • News
  • Forums

Content

Expand project menu

Updated by Andreas G over 5 years ago

AS an OpenProject user as well as a Meeting Organizer
I WANT have all attendees of a meeting in the generated ics file (as well as PARTSTAT and other metadata)
SO THAT I can confirm or decline the invite right from my calendar software.

The icalendar-gem supports it.

```ruby
cal.event do |e|
// ...
e.append_attendee(Icalendar::Values::CalAddress.new("mailto:attendee@example.com", {"CN" => "Attendee Name", "PARTSTAT" => "NEEDS-ACTION", "RSVP" => "TRUE", "CUTYPE" => "INDIVIDUAL", "ROLE" => "REQ-PARTICIPANT"}))
end
```

Back

Loading...