Skip to content

Commit

Permalink
Fix username wildcard search
Browse files Browse the repository at this point in the history
  • Loading branch information
lmf-mx committed Jul 11, 2019
1 parent 1e49128 commit b3bb612
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion JiraPS/Public/Get-JiraUser.ps1
Expand Up @@ -3,7 +3,7 @@ function Get-JiraUser {
[CmdletBinding( DefaultParameterSetName = 'Self' )]
param(
[Parameter( Position = 0, Mandatory, ValueFromPipelineByPropertyName, ParameterSetName = 'ByUserName' )]
[ValidateNotNullOrEmpty()]
[AllowEmptyString()]
[Alias('User', 'Name')]
[String[]]
$UserName,
Expand Down

0 comments on commit b3bb612

Please sign in to comment.