Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type KeepAttendees ¶
type KeepAttendees struct {
UseEmailAsDisplayName bool
}
KeepAttendes allows to keep the attendees of an event. Actually to be safe that no email is going anywhere, we're using dummy addresses here. still RFC5322 compliant but updates are going to /dev/null Creating a copy of an event with the original email addresses is risky, so this transformer allows you configure:
- UseEmailAsDisplayName to populate the email address as attendee display name in the sink, so you're seeing who is attending
func (*KeepAttendees) Name ¶
func (t *KeepAttendees) Name() string
type KeepDescription ¶
type KeepDescription struct{}
KeepDescription allows to keep the description of an event.
func (*KeepDescription) Name ¶
func (t *KeepDescription) Name() string
type KeepLocation ¶
type KeepLocation struct{}
KeepLocation allows to keep the location of an event.
func (*KeepLocation) Name ¶
func (t *KeepLocation) Name() string
type KeepMeetingLink ¶
type KeepMeetingLink struct{}
KeepMeetingLink allows to keep the meeting link of an event.
func (*KeepMeetingLink) Name ¶
func (t *KeepMeetingLink) Name() string
type KeepReminders ¶
type KeepReminders struct{}
KeepReminders allows to keep the reminders of an event.
func (*KeepReminders) Name ¶
func (t *KeepReminders) Name() string
type PrefixTitle ¶
type PrefixTitle struct {
Prefix string
}
PrefixTitle allows to replace the title of an event.
func (*PrefixTitle) Name ¶
func (t *PrefixTitle) Name() string
type ReplaceTitle ¶
type ReplaceTitle struct {
NewTitle string
}
ReplaceTitle allows to replace the title of an event.
func (*ReplaceTitle) Name ¶
func (t *ReplaceTitle) Name() string