I want to restrict user to login from one browser-device at a time, referred this : https://support.abp.io/QA/Questions/536/How-to-Restrict-users-multiple-login-session
Added new property in the identity user table. In the login post method getting the value of the new property correct, but when I set the value of it getting the error.
Also can not set the value of the property in the logout as well.
refer login method :
refer logout method :
refer for error when logging in :
ABP Framework version: v7
UI type: Blazor
DB provider: EF Core
Tiered (MVC): yes
Exception message and stack trace:
Steps to reproduce the issue:"
In the Settings : Identity Management : Password strength settings
Uncheck the custom password settings
Go to the users => Create-Edit the user and check the "Should change password on next login"
Now logout and login with newly created - updated account
Goes to the ChangePassword page, when submitted new password still shows the password validations errors
Using the default abp component, not extended or anything.
The custom validation working fine in the Account => Change Password Tab
refer the gif
When logging out from the server side pages (Manage your profile page), the redirected url goes to swagger.
refer
I wanted to override this behavior, I followed the abp.io documentation : https://docs.abp.io/en/abp/latest/UI/Blazor/Navigation-Menu#manipulating-the-existing-menu-items
but when I call the context.Menu.FindMenuItem("Account.Logout"), it returns null object.
refer
Any solution?
How to change the favicon and title of the header in the profile settings page in the blazor app?
The changes in the Account - default.cshtml only reflects in the login/reset-pass/confirm-email/register pages, not the profile page.
When creating new user from the Host side the confirm email link works fine, but creating user from tenant side, the confirm email link does not work and gives the error
404 Page not foundThere is no entity IdentityUser with id = 3a0aeddd-c241-6619-17e4-c64fd1017f7f! \
Using the abp.io default components, does not extend/modify the account or user components.
I want to remove the theme change option from the menutoolbar.
I tried to override the MainHeaderToolbar component and remove it from there. The List<RenderFragment>(); only has two object, one is "MainHeaderToolbarUserMenu" and other "GeneralSettings". It renders the "GeneralSettings" component altogether.
So how to remove the theme change option inside from it.
Does abp.io blazor have a feature of clearing all the cache of the all users/tenants from host tenant like in asp.net zero https://docs.aspnetzero.com/en/aspnet-core-mvc/latest/Features-Mvc-Core-Maintenance
I looked at the documentation of the abp.io but did not find it. Can we add this to abp.io blazor as well?
When sidebar toggle is clicked it does not hide the sidebar right away, when mouse is removed from sidebar then only it hides the sidebar, is this default behavior and can we change this?
gif for reference
The menu name is big so I want to give tooltip to it. see image
I want to add tooltip to the sidebar menu, I tries using the WithCustomData of the ApplicationMenuItem in the IMenuContributor, but could not, see image