Skip to content

Commit

Permalink
[AtlassianPS#172] Fix default value of Visibility of comments
Browse files Browse the repository at this point in the history
  • Loading branch information
lipkau committed Sep 18, 2017
1 parent 9bc0351 commit d47875d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion JiraPS/Public/Add-JiraIssueComment.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ function Add-JiraIssueComment {

# Visibility of the comment - should it be publicly visible, viewable to only developers, or only administrators?
[ValidateSet('All Users', 'Developers', 'Administrators')]
[String] $VisibleRole = 'Developers',
[String] $VisibleRole = 'All Users',

# Credentials to use to connect to JIRA.
# If not specified, this function will use anonymous access.
Expand Down

0 comments on commit d47875d

Please sign in to comment.