Is the class added to the element in the DOM when you call notify.info
?
Yes, you can configure the cache's DefaultSlidingExpirationTime
.
https://aspnetboilerplate.com/Pages/Documents/Caching#configuration
Is the class added to the element in the DOM?
Which version of ASP<span></span>.NET Zero (ASP<span></span>.NET Core + Angular) are you on?
Oh, there is an identical query in ASP<span></span>.NET Boilerplate's GetRoles
, which is called in GetUserPermissionCacheItem
to populate the cache for IsGranted
.
Metronic already sets font-size
:
.swal2-popup.swal2-toast .swal2-content {
justify-content: flex-start;
font-size: 1em;
}
To override that, you can specify !important
:
.notify-content-class {
font-size: large !important;
font-weight: 900;
}
It appears to be from GetAllRoleNamesOfUsersOrganizationUnits
, which is called in GetUserForEdit
.
Possible duplicate of https://stackoverflow.com/questions/51742420/signalr-not-falling-back-to-older-protocols.
Which version of IIS are you on?
On the client side, the auth flow is briefly described in PR aspnetzero/aspnet-zero-core#2777:
If the user selects "Remember me", refresh token will be stored. Then if any request gets 401 AbpHttpInterceptor :
- will block all request,
- store them in BehaviorSubject
- try to get access token
- if it success, rehandle all requests.
- otherwise go login
You can refer to the source code in src/abpHttpInterceptor.ts.
Do you mean on the client side?
You have the source code.
You can also take a look at the PR: aspnetzero/aspnet-zero-core#2561