ABP Framework version: v7.2.2
UI Type: Angular(Basic Theme) V15
Database System: EF Core (SQL Server)
Tiered (for MVC) or Auth Server Separated (for Angular): yes We use Azure B2C
Exception message and full stack trace:
Steps to reproduce the issue: We generated proxy using the below command
ng generate @abp/ng.schematics:proxy-add --target=XYZ --source=XYZ
But I'm getting the following errors
Error: src/app/proxy/volo/abp/domain/entities/models.ts:7:51 - error TS2315: Type 'Entity' is not generic.
7 export interface BasicAggregateRoot<TKey> extends Entity<TKey> {
Error: src/app/proxy/volo/abp/identity/models.ts:4:40 - error TS2315: Type 'Entity' is not generic.
4 export interface IdentityClaim extends Entity<string> { ~~~~~~~~~~~~~~
How to overcome this issue. This is an urgent issue could I get an answer for this asap.
Thanks in advance.
ABP Framework version: v7.2.2
UI Type: Angular
Database System: EF Core (SQL Server)
Tiered (for MVC) or Auth Server Separated (for Angular): yes
Exception message and full stack trace:
Steps to reproduce the issue:
We are using ABP with Angular , I have a situation in which on click of any link I want the user to be directed to login and after successful login we have to redirect the user to the same page that whatever user clicked before.
I tried this, const params = { returnUrl: 'https://www.google.ca/' }; this.authService.navigateToLogin(params);
I also tried it with my own Auth guard (canActivate) but they dont seem to be redirecting to the old url before logging in.
Please let me know what is the alternative to make this work(in Angular).
User Presses a Link => Redirect to Login Page => User again redirected to the link in step 1.