Activities of "sumeyye.kurtulus"

Hello, as you may derive from the codebase (https://github.com/abpframework/abp/tree/dev/npm/ng-packs/packages/theme-shared/src/lib/components/modal), ABP modal component supports all the options in the same way with the NgbModalOptions

Since then the open function in the library will handle the options by appending them to the modal refence, you can implement the intended behavior.

If you think that your case is not dependent on this, I can assist you further.

Hello, I have investigated this case with the related fix that you have mentioned. As the explanation implies here, the expected behavior is to check the related tokens together with the remember me option. So, the logic is not independent from them.

 private checkRememberMeOption() {
    const accessToken = this.oAuthService.getAccessToken();
    const isTokenExpire = isTokenExpired(this.oAuthService.getAccessTokenExpiration());
    let rememberMe = this.rememberMeService.get();

    if (accessToken && !rememberMe) {
      const rememberMeValue = this.rememberMeService.getFromToken(accessToken);

      this.rememberMeService.set(!!rememberMeValue);
    }

    rememberMe = this.rememberMeService.get();
    if (accessToken && isTokenExpire && !rememberMe) {
      this.rememberMeService.remove();
      this.oAuthService.logOut();
    }
  }

Hello, this specific proxy generation problem could have been solved within this release by this fix.

If you think that your case is different, you can provide more detail so that I can assist you further.

Hello, I can suggest you to utilize the component replacement feature that framework proposes to override the default login page. In this case, you will need to consider AuthWrapperComponent to replace with a custom one.

After the replacement, you can also implement your custom logic for the account/admin route in the same way.

Hello, I have carefully investigated your case and realized that this issue was addressed before. If you just remove the :: separation, the problem should be solved. Here is the related issue and documentation references.

Thank you for your cooperation.

Thank you for providing extra details. Currently, we do not have an option to customize this text. You can follow the next releases to be able to customize it.

May I ask for your license type?

Hello, I recommend you to follow this documentation part to customize the AuthWrapperComponent. The auth wrapper component comes from @volo/abp.ng.account/public , so you can import it like this:

import { eAccountComponents } from '@volo/abp.ng.account/public';

Hello, since then we have published the previous patch recently, we will be releasing the next one in the upcoming week.

I am pleased to hear that. Additionally, I will be addressing the other import issue as well. So, you can follow this issue within the releases 🙏If you prefer a workaround, you can replace the wrong imports with this @volo/abp.ng.text-template-management/proxy

Showing 11 to 20 of 64 entries
Made with ❤️ on ABP v9.0.0-preview Updated on September 19, 2024, 10:13