You can inject the ICurrentUser service and use IsAuthenticated to check the user whatever is logged.
hi
You can give it a try. I think it will be works.
Like your example website, it automatically jumps to the login page.
The demo website is angular. You are using Blazor Server.
Please confirm your email config is correct.
https://github.com/abpframework/abp-samples/blob/master/EmailSendDemo/src/EmailSendDemo/Program.cs#L11
HI
Please use this demo to check your mail config.
https://github.com/abpframework/abp-samples/tree/master/EmailSendDemo
hi
Check your xxxDomainModule. It will use NullEmailSender in DEBUG mode.
#if DEBUG
context.Services.Replace(ServiceDescriptor.Singleton<IEmailSender, NullEmailSender>());
#endif
hi
Have you tried using NavigationManager
in Index
page?
I do notice that we don’t have any backend tables for permission/localization master data. So how we can manage the permission for remote/client applications which out of side Identity Manager.
Please use code to manage the permission. Because the application may use the cache, manually change the data will not refresh the cache.
This is issue for us critical as of now. We have tried uncheck the client application level, that is not also working. Please help us ASAP. On top of all setting options not saving from UI. If changed from DB it is not showing until I re-cycle the application pool.
This may be because the cache is not refreshed, refer to the previous answer and change the settings through the code.
Unable to disable the local login
Email confirmation email not coming. Email verification code not coming
Check your xxxDomainModule
. It will use NullEmailSender
in DEBUG mode.
#if DEBUG
context.Services.Replace(ServiceDescriptor.Singleton<IEmailSender, NullEmailSender>());
#endif
Verification Code – options not asking weather email/phone type?
The SMS verification code may be only numbers. The email verification code may be a URL.
Also, I can’t able find the method to custom claims mapping while inserting the user For example, from Azure we need to insert Name, Surname. I am not able set the claims from Azure to User Table. This very critical we are moving to production very soon.
Can you share the code that configure Azure authentication?
some of delete function not working.
Please explain it in details.
Same question https://support.abp.io/QA/Questions/1277#answer-ac625415-03d3-8d1b-abf9-39fc6c6111d3
hi
They are the application services of blogs.
https://github.com/abpframework/abp/blob/dev/modules/blogging/src/Volo.Blogging.Application.Contracts/Volo/Blogging/Blogs/IBlogAppService.cs#L9
https://github.com/abpframework/abp/blob/dev/modules/blogging/src/Volo.Blogging.Admin.Application.Contracts/Volo/Blogging/Admin/Blogs/IBlogManagementAppService.cs#L10