Skip to content

Commit

Permalink
Adding comment to UseEventUrlVerification method
Browse files Browse the repository at this point in the history
  • Loading branch information
Simon Oxtoby committed Jul 18, 2020
1 parent 69e82d7 commit 2ab6c37
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion SlackNet.AspNetCore/SlackEndpointConfiguration.cs
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,13 @@ public SlackEndpointConfiguration UseSigningSecret(string signingSecret)
SigningSecret = signingSecret;
return this;
}


/// <summary>
/// Verify the signing secret or token of Slack's URL verification requests. Enabled by default.
/// </summary>
/// <remarks>
/// You should only disable this temporarily and in certain circumstances (see <a href="https://github.com/soxtoby/SlackNet/pull/57">SlackNet pull request #57</a> for more information).
/// </remarks>
public SlackEndpointConfiguration UseEventUrlVerification(bool verifyEventUrl)
{
VerifyEventUrl = verifyEventUrl;
Expand Down

0 comments on commit 2ab6c37

Please sign in to comment.