I have implemented login to my application via Azure Active Directory and and everything works fine.
Now i have created a new custom role (AdminApp) in Azure by manage/App roles, and setting the property "Allowed member types" to "Users/Groups". After select the enterprise applications in AzureAD and, under Mange/Users and groups, i added a new user and i have assignment the custom role.
In the page properties/Roles on Blazor Studio i addes the custom role but not working "Page Not Found".
It seems we didn't include the Unauthorized.razor page (which is displayed when the current user doesn't have access). We will fix that with the next release.
But the user have the autorizations, then he should see the page. Where i include the Unauthorized.razor page? because the mypage.razor is in *.client project instead the Unauthorized.razor is in *.server project.
I recommend debugging the generated SecurityService and checking if the principal has the role claim.
Also make sure you have followed the steps from here.
Additionally logout from the Radzen application after making changes in terms of roles (adding or removing ones for the current user). If you don't log out the cached roles will be used even if you make changes in the Azure portal.