Activities of "Anjali_Musmade"

Hi,

Please add that favicon icon under Host/wwwroot project; please make sure use .svg file. and check in Incognito tab.

Thanks.

Hello,

Please check if it helps you https://support.abp.io/QA/Questions/6647

Thanks.

Hello,

Please check if it`s helps you https://support.abp.io/QA/Questions/641/Organizational-Units-restricted-access-and-data-filtering

Thanks.

Hello ,

Please check this link https://docs.abp.io/en/abp/latest/UI/AspNetCore/Navigation-Menu

Thank you.

Answer

Hello,

I apologies for your inconvenience, yes that link is for MVC. Angular uses oAuth2 as an authentication method.

To refresh the page without reloading (after autologin) in Angular try to add below code in app.comonent.ts

export class AppComponent {
  constructor(private authService:AuthService, private router:Router)   { }
   
   ngOnInit(): void {
    
    if (this.authService.isAuthenticated) {
      this.router.navigate(this.router.getCurrentNavigation().extras.state?.redirect || ['/']);
    }
    else {
      this.router.navigate(['/']);
    }
 }
}

Thanks

Answer

Hello,

could you please check https://community.abp.io/posts/implementing-passwordless-authentication-with-asp.net-core-identity-c25l8koj

Thanks

Hi, We will fix the problem in the next patch version. You can try to temporarily downgrade to version 8.0.2

Hello,

I follow the below steps to add module as a source code

  1. Create ABP.io project by using cli or ABP suite and check if it runs successfully.
  2. Add any module source code through cli or ABP suite

Please Make sure that

  1. Application should not be up and running at the time of adding module
  2. The version of Application and module should be same by following above steps when I add source code of Identity module to my application its working fine like

Please check by following these steps or share your steps to reproduce the issue.

Thanks,

Hello ,

Please check you error logs for any error. If is there any error just share that error message.

I am not exactly sure but i think there is something wrong with your EntityName (MyEntityDto) can you please check by changing it.

Thank you.

Hello,

please check if it helps you https://support.abp.io/QA/Questions/2103/React-Native-External-Login-Approach

thanks

Showing 471 to 480 of 1195 entries
Made with ❤️ on ABP v9.1.0-preview. Updated on November 11, 2024, 11:11