-
Notifications
You must be signed in to change notification settings - Fork 3.5k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Issue/10019 move oauth seperated package #15201
Issue/10019 move oauth seperated package #15201
Conversation
|
||
return headers; | ||
intercept(req: HttpRequest<any>, next: HttpHandler): Observable<HttpEvent<any>> { | ||
return next.handle(req); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
we should keep this.httpWaitService.addRequest(request);
and .pipe(finalize(() => this.httpWaitService.deleteRequest(request)));
@@ -0,0 +1 @@ | |||
export * from './ auth-flow-strategy'; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
it should be './auth-flow-strategy'
@@ -11,6 +11,7 @@ | |||
"@ngx-validate/core", | |||
"@swimlane/ngx-datatable", | |||
"bootstrap", | |||
"@popperjs/core" | |||
"@popperjs/core", | |||
"@abp/ng.oauth" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
i think theme shared package doesn't depended oauth package
02b9f99
to
3a3a823
Compare
Authentication codes move to OAuth package.
Resolves #10019
Test steps.
Run run build-all
Run copy-to-test
test on templates.
There is no new feature. This is only a refactoring about authentication. All auth related features will be work as well.