Welcome to the Blazor feedback portal. We’re happy you’re here! If you have feedback on how to improve the Blazor, we’d love to hear it!>
Thanks for joining our community and helping improve Syncfusion products!
The file upload components should allow to upload files to authorized endpoints only. I mean, I don't want to open up a API endpoint for everyone to upload files...
Currently this is not possible as far as I see:
[Authorize(Policy = nameof(ClaimType.Upload))]
[HttpPost("savefile")]
public async Task SaveFile(IList files)
{
// Do something...
}