-
Notifications
You must be signed in to change notification settings - Fork 18
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
fix: ecosystem member list search sorting issue #532
fix: ecosystem member list search sorting issue #532
Conversation
Signed-off-by: sanjay-k1910 <sanjay.khatal@ayanworks.com>
Signed-off-by: sanjay-k1910 <sanjay.khatal@ayanworks.com>
@@ -54,19 +50,17 @@ export class EcosystemRolesGuard implements CanActivate { | |||
const ecosystemOrgData = await this.ecosystemService.fetchEcosystemOrg(ecosystemId, orgId); | |||
|
|||
if (!ecosystemOrgData) { | |||
throw new HttpException('Organization does not match', HttpStatus.FORBIDDEN); | |||
throw new ForbiddenException('Organization does not match'); |
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.
Please add these messages in the common file
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.
Resolved.
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.
LG
Signed-off-by: sanjay-k1910 <sanjay.khatal@ayanworks.com>
|
What?
Why?