Base solution for your next web application
Ends in:
01 DAYS
01 HRS
01 MIN
01 SEC

Activities of "aaron"

Is the class added to the element in the DOM when you call notify.info?

Answer

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?

Answer

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;
}
Answer

It appears to be from GetAllRoleNamesOfUsersOrganizationUnits, which is called in GetUserForEdit.

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

Showing 81 to 90 of 1543 entries