Skip to content
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
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@
using Color_Chan.Discord.Parsers.Interfaces;
using Color_Chan.Discord.Rest.Models.Interaction;
using Color_Chan.Discord.Rest.Results;
using Microsoft.AspNetCore.Authorization;
using Microsoft.AspNetCore.Http;
using Microsoft.AspNetCore.Mvc;
using Microsoft.Extensions.Logging;
Expand Down Expand Up @@ -76,6 +77,7 @@ DiscordTokens discordTokens
/// <returns>
/// An <see cref="ActionResult" /> with the json result of the request.
/// </returns>
[AllowAnonymous]
[HttpPost("interaction")]
public async Task<ActionResult> HandleInteractionRequestAsync()
{
Expand Down
Loading