Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

added the arguement for Link_Names #1245

Merged
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions src/app/FakeLib/SlackNotificationHelper.fs
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,8 @@ type SlackNotificationParams = {
Unfurl_Links: bool
// Richly formatted message attachments for the notification
Attachments: SlackNotificationAttachmentParams[]
// Whether or not to link names of users or channels (beginning with @ or #), Default value : false
Link_Names: bool
}

/// The default Slack notification parameters
Expand All @@ -59,6 +61,7 @@ let SlackNotificationDefaults = {
Icon_Emoji = null
Unfurl_Links = false
Attachments = Array.empty
Link_Names = false
}

/// The default parameters for Slack notification attachments
Expand Down