Skip to content

Commit

Permalink
Added missing domain back in for WebCheckStep authentication
Browse files Browse the repository at this point in the history
  • Loading branch information
danielabbatt committed Sep 6, 2023
1 parent 09a882e commit 0a390ce
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions LogicMonitor.Api/Websites/WebsiteStepAuthentication.cs
Original file line number Diff line number Diff line change
Expand Up @@ -13,14 +13,20 @@ public class WebsiteStepAuthentication
public string Type { get; set; } = string.Empty;

/// <summary>
/// NTLM authentication userName
/// Authentication userName
/// </summary>
[DataMember(Name = "userName")]
public string UserName { get; set; } = string.Empty;

/// <summary>
/// NTLM authentication password
/// Authentication password
/// </summary>
[DataMember(Name = "password")]
public string Password { get; set; } = string.Empty;

/// <summary>
/// Domain - required when type is NTLM
/// </summary>
[DataMember(Name = "domain")]
public string Domain { get; set; } = string.Empty;
}

0 comments on commit 0a390ce

Please sign in to comment.