mirror of
https://github.com/goharbor/harbor.git
synced 2025-04-06 12:06:55 +02:00
Merge pull request #8760 from jwangyangls/revert-8494-fix-global-search
Revert "Fix redirect login page when enter harbor through global search"
This commit is contained in:
commit
503f5352f0
@ -41,19 +41,8 @@ export class MemberGuard implements CanActivate, CanActivateChild {
|
|||||||
this.checkMemberStatus(state.url, projectId).subscribe((res) => observer.next(res));
|
this.checkMemberStatus(state.url, projectId).subscribe((res) => observer.next(res));
|
||||||
}
|
}
|
||||||
, error => {
|
, error => {
|
||||||
// if it is public project return true;
|
this.router.navigate([CommonRoutes.HARBOR_DEFAULT]);
|
||||||
this.projectService.getProject(projectId).subscribe(project => {
|
observer.next(false);
|
||||||
if (project.metadata.public) {
|
|
||||||
observer.next(true);
|
|
||||||
} else {
|
|
||||||
this.router.navigate([CommonRoutes.HARBOR_DEFAULT]);
|
|
||||||
observer.next(false);
|
|
||||||
}
|
|
||||||
}, err => {
|
|
||||||
this.router.navigate([CommonRoutes.HARBOR_DEFAULT]);
|
|
||||||
observer.next(false);
|
|
||||||
});
|
|
||||||
|
|
||||||
});
|
});
|
||||||
} else {
|
} else {
|
||||||
this.checkMemberStatus(state.url, projectId).subscribe((res) => observer.next(res));
|
this.checkMemberStatus(state.url, projectId).subscribe((res) => observer.next(res));
|
||||||
|
Loading…
Reference in New Issue
Block a user