Activities of "Anjali_Musmade"

Hello,

Please check the similar issue https://support.abp.io/QA/Questions/6657/Generation-of-Service-Proxies-for-Angular-not-handling-subclasses-of-PagedResultDtoT-correctly#answer-3a10d21f-9a90-0a22-9316-f313aa69f8a5

Thanks.

Hello again,

sorry its my bad I didn't understood your case at first glance.

You can download the source code of Leptonx from ABP suite like

In that you can find code for Languages Switch component as shown in ss

you can download it and then customize it as per your requirement.

also have look to the previous documentation https://docs.abp.io/en/commercial/6.0/themes/lepton-x/commercial/mvc#main-menu if it helps you

Thanks

Hello,

As given in documentation I have followed the steps as below

  1. Create new component my-awsome-tab-component with module

  2. create a file named manage-profile-tabs.provider.ts under the src then add the given code

import { APP_INITIALIZER } from '@angular/core';
import { TwoFactorTabComponent } from '@volo/abp.ng.account/public';
import {
  eAccountManageProfileTabNames,
  ManageProfileTabsService,
} from '@volo/abp.ng.account/public/config';
import { MyAwesomeTabComponent } from './my-awesome-tab/my-awesome-tab.component';


export const MANAGE_PROFILE_TAB_PROVIDER = {
  provide: APP_INITIALIZER,
  useFactory: configureManageProfileTabs,
  deps: [ManageProfileTabsService],
  multi: true,
};

export function configureManageProfileTabs(tabs: ManageProfileTabsService) {
  return () => {
    tabs.add([
      {
        name: 'ChangePasswordNew',
        order: 5,
        component: MyAwesomeTabComponent,
      },
    ]);

    tabs.patch(eAccountManageProfileTabNames.TwoFactor, {
      name: 'Two factor authentication',
      component: TwoFactorTabComponent,
    });

    tabs.remove([eAccountManageProfileTabNames.ChangePassword]);
  };
}
  1. Then add code in app.module.ts
import { MANAGE_PROFILE_TAB_PROVIDER } from './manage-profile-tabs.provider';
import { MyAwesomeTabModule } from './my-awesome-tab/my-awesome-tab.module';

@NgModule({
    //...
    imports: [
        //...
        MyAwesomeTabModule,
    ],
    providers: [
        //...
        MANAGE_PROFILE_TAB_PROVIDER
    ]
})
export class AppModule {}

and it will result like

please try with this.

thanks

Hello,

please check out https://docs.abp.io/en/commercial/7.4/modules/language-management

Thanks

Hello,

Please follow this documentation https://docs.abp.io/en/commercial/5.3/ui/angular/manage-profile-page-tabs I have checked with this doc it will result like

Thanks.

Hello,

Please check this similar issue https://gist.github.com/mehmet-erim/c4e5c7a760388b0fdb21049325e54960

Thanks.

Hello,

I have checked your log files there is no any error or exception Please check out https://support.abp.io/QA/Questions/1015/Email-is-not-coming-after-forgot-password#answer-5c4820a3-7106-c96a-26bd-39fb323e3594 if it helps you.

Thanks

Hello,

Could you please change "@volosoft/abp.ng.theme.lepton-x": "~3.1.1", . After that delete yarn.lock file. Run yarn command and then run npm start please let me know if it helps you.

thanks

Hello,

when you use command abp update it has updated to latest stable version 8.1.3 If you want to update it to 8.1.0 that time you should use command like abp update --version 8.1.0

Please check your abp cli version also it should updated to 8.1.0 then it will work

FYI when you want to update your abp application from one version to another you need to follow migration guide https://docs.abp.io/en/abp/latest/Migration-Guides/Index

Thanks

Hello,

please check similar issue https://support.abp.io/QA/Questions/1790/Forgot-Password--password-reset-codelink-not-send-to-email

thanks

Showing 21 to 30 of 992 entries
Made with ❤️ on ABP v8.2.0-preview Updated on March 25, 2024, 15:11