Skip to content
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(auth-admin-web): remove delegation controls from old ids admin for client and api-scope #14999

Merged
merged 2 commits into from
May 31, 2024

Conversation

Herdismaria
Copy link
Contributor

@Herdismaria Herdismaria commented May 29, 2024

☝️

What

Deprecate delegation management for Clients and api scopes in the old ids-admin

Why

We are refactoring DelegationProviders and DelegationTypes and the changes are not compatible with the old ids-admin ui. Instead of changing it there we will point users to the new admin portal instead.

Screenshots / Gifs

Screenshot 2024-05-29 at 13 11 55

Checklist:

  • I have performed a self-review of my own code
  • I have made corresponding changes to the documentation
  • My changes generate no new warnings
  • I have added tests that prove my fix is effective or that my feature works
  • Formatting passes locally with my changes
  • I have rebased against main before asking for a review

Summary by CodeRabbit

  • New Features

    • Simplified client settings management by providing a link to the new IDS Admin in the Client Create Form.
    • Updated API scope management with a link to the new IDS Admin in the Api Scope Create Form.
  • Bug Fixes

    • None.
  • Documentation

    • None.
  • Refactor

    • Updated forms to replace multiple checkboxes with a single paragraph containing a link for settings management.
  • Style

    • None.
  • Tests

    • None.
  • Chores

    • None.
  • Revert

    • None.

@Herdismaria Herdismaria requested review from a team as code owners May 29, 2024 13:19
Copy link
Contributor

coderabbitai bot commented May 29, 2024

Walkthrough

The updates primarily focus on simplifying the user interface and refactoring DTOs. In the UI, multiple checkbox fields have been replaced with links to manage settings in a new IDS Admin. DTOs have been restructured for better code maintainability, with specific properties being excluded from certain classes.

Changes

File Path Change Summary
apps/auth-admin-web/components/Client/form/ClientCreateForm.tsx Removed multiple checkbox fields and added a paragraph with a link to manage settings in the new IDS Admin.
apps/auth-admin-web/components/Resource/forms/ApiScopeCreateForm.tsx Removed multiple checkbox fields related to grant types and replaced them with a paragraph element containing a link.
apps/services/auth/admin-api/src/app/modules/resources/resources.controller.ts Updated parameter types in createApiScope and updateApiScope methods.
libs/auth-api-lib/src/index.ts Added a new export statement for api-scope-create.dto.
libs/auth-api-lib/src/lib/clients/dto/base/client-base.dto.ts Changed ClientBaseDTO from an abstract class to a regular class.
libs/auth-api-lib/src/lib/clients/dto/client-update.dto.ts Modified ClientUpdateDTO to extend OmitType, excluding specific properties from ClientBaseDTO.
libs/auth-api-lib/src/lib/clients/dto/client.dto.ts Changed ClientDTO to extend OmitType, excluding specific properties from ClientBaseDTO.
libs/auth-api-lib/src/lib/resources/dto/api-scope-create.dto.ts Defined CreateApiScopeDTO for creating API scopes, extending ApiScopeBaseDTO with additional properties and validations.
libs/auth-api-lib/src/lib/resources/resources.service.ts Updated parameter types in createApiScope, updateApiScope, and assertSameAsGroup methods to use CreateApiScopeDTO.

Thank you for using CodeRabbit. We offer it for free to the OSS community and would appreciate your support in helping us grow. If you find it useful, would you consider giving us a shout-out on your favorite social media?

Share
Tips

Chat

There are 3 ways to chat with CodeRabbit:

  • Review comments: Directly reply to a review comment made by CodeRabbit. Example:
    • I pushed a fix in commit <commit_id>.
    • Generate unit testing code for this file.
    • Open a follow-up GitHub issue for this discussion.
  • Files and specific lines of code (under the "Files changed" tab): Tag @coderabbitai in a new review comment at the desired location with your query. Examples:
    • @coderabbitai generate unit testing code for this file.
    • @coderabbitai modularize this function.
  • PR comments: Tag @coderabbitai in a new PR comment to ask questions about the PR branch. For the best results, please provide a very specific query, as very limited context is provided in this mode. Examples:
    • @coderabbitai generate interesting stats about this repository and render them as a table.
    • @coderabbitai show all the console.log statements in this repository.
    • @coderabbitai read src/utils.ts and generate unit testing code.
    • @coderabbitai read the files in the src/scheduler package and generate a class diagram using mermaid and a README in the markdown format.
    • @coderabbitai help me debug CodeRabbit configuration file.

Note: Be mindful of the bot's finite context window. It's strongly recommended to break down tasks such as reading entire modules into smaller chunks. For a focused discussion, use review comments to chat about specific files and their changes, instead of using the PR comments.

CodeRabbit Commands (invoked as PR comments)

  • @coderabbitai pause to pause the reviews on a PR.
  • @coderabbitai resume to resume the paused reviews.
  • @coderabbitai review to trigger an incremental review. This is useful when automatic reviews are disabled for the repository.
  • @coderabbitai full review to do a full review from scratch and review all the files again.
  • @coderabbitai summary to regenerate the summary of the PR.
  • @coderabbitai resolve resolve all the CodeRabbit review comments.
  • @coderabbitai configuration to show the current CodeRabbit configuration for the repository.
  • @coderabbitai help to get help.

Additionally, you can add @coderabbitai ignore anywhere in the PR description to prevent this PR from being reviewed.

CodeRabbit Configration File (.coderabbit.yaml)

  • You can programmatically configure CodeRabbit by adding a .coderabbit.yaml file to the root of your repository.
  • Please see the configuration documentation for more information.
  • If your editor has YAML language server enabled, you can add the path at the top of this file to enable auto-completion and validation: # yaml-language-server: $schema=https://coderabbit.ai/integrations/schema.v2.json

Documentation and Community

  • Visit our Documentation for detailed information on how to use CodeRabbit.
  • Join our Discord Community to get help, request features, and share feedback.
  • Follow us on X/Twitter for updates and announcements.

Copy link
Contributor

@coderabbitai coderabbitai bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Actionable comments posted: 0

Outside diff range and nitpick comments (2)
apps/auth-admin-web/components/Resource/forms/ApiScopeCreateForm.tsx (1)

Line range hint 61-61: Consider simplifying the computed expressions as suggested by the static analysis tool. This can enhance code readability and performance.

- // Example for one of the lines:
- const isValid = name.length > 0 ? ValidationUtils.validateApiScope(name) : false
+ const isValid = !!name.length && ValidationUtils.validateApiScope(name)

Also applies to: 87-87, 88-88, 132-132, 148-148, 150-150, 155-155, 156-156, 167-167, 168-168, 170-170, 175-175, 183-183, 194-194, 195-195, 198-198, 204-204, 218-218, 229-229, 230-230

apps/auth-admin-web/components/Client/form/ClientCreateForm.tsx (1)

Line range hint 45-45: Use self-closing tags for JSX elements without children.

- const [clientTypeInfo, setClientTypeInfo] = useState<JSX.Element>(<div></div>)
+ const [clientTypeInfo, setClientTypeInfo] = useState<JSX.Element>(<div />)

This change makes the JSX cleaner and is a best practice in React development.

Review Details

Configuration used: .coderabbit.yaml
Review profile: CHILL

Commits Files that changed from the base of the PR and between 2bdfbdd and b67c86f.
Files selected for processing (9)
  • apps/auth-admin-web/components/Client/form/ClientCreateForm.tsx (1 hunks)
  • apps/auth-admin-web/components/Resource/forms/ApiScopeCreateForm.tsx (1 hunks)
  • apps/services/auth/admin-api/src/app/modules/resources/resources.controller.ts (4 hunks)
  • libs/auth-api-lib/src/index.ts (1 hunks)
  • libs/auth-api-lib/src/lib/clients/dto/base/client-base.dto.ts (1 hunks)
  • libs/auth-api-lib/src/lib/clients/dto/client-update.dto.ts (1 hunks)
  • libs/auth-api-lib/src/lib/clients/dto/client.dto.ts (1 hunks)
  • libs/auth-api-lib/src/lib/resources/dto/api-scope-create.dto.ts (1 hunks)
  • libs/auth-api-lib/src/lib/resources/resources.service.ts (4 hunks)
Files skipped from review due to trivial changes (1)
  • libs/auth-api-lib/src/lib/clients/dto/base/client-base.dto.ts
Additional Context Used
Biome (80)
apps/auth-admin-web/components/Client/form/ClientCreateForm.tsx (20)

45-45: JSX elements without children should be marked as self-closing. In JSX, it is valid for any element to be self-closing.


70-70: The computed expression can be simplified without the use of a string literal.


71-71: The computed expression can be simplified without the use of a string literal.


108-108: Change to an optional chain.


199-199: The computed expression can be simplified without the use of a string literal.


205-205: The computed expression can be simplified without the use of a string literal.


210-210: The computed expression can be simplified without the use of a string literal.


213-213: The computed expression can be simplified without the use of a string literal.


266-266: The computed expression can be simplified without the use of a string literal.


275-275: The computed expression can be simplified without the use of a string literal.


280-280: The computed expression can be simplified without the use of a string literal.


289-289: The computed expression can be simplified without the use of a string literal.


289-289: The computed expression can be simplified without the use of a string literal.


298-298: The computed expression can be simplified without the use of a string literal.


299-299: The computed expression can be simplified without the use of a string literal.


308-308: The computed expression can be simplified without the use of a string literal.


308-308: The computed expression can be simplified without the use of a string literal.


317-317: The computed expression can be simplified without the use of a string literal.


318-318: The computed expression can be simplified without the use of a string literal.


328-328: The computed expression can be simplified without the use of a string literal.

apps/auth-admin-web/components/Resource/forms/ApiScopeCreateForm.tsx (20)

61-61: Change to an optional chain.


87-87: The computed expression can be simplified without the use of a string literal.


88-88: The computed expression can be simplified without the use of a string literal.


132-132: The computed expression can be simplified without the use of a string literal.


148-148: The computed expression can be simplified without the use of a string literal.


150-150: The computed expression can be simplified without the use of a string literal.


155-155: The computed expression can be simplified without the use of a string literal.


156-156: The computed expression can be simplified without the use of a string literal.


167-167: The computed expression can be simplified without the use of a string literal.


168-168: The computed expression can be simplified without the use of a string literal.


170-170: The computed expression can be simplified without the use of a string literal.


175-175: The computed expression can be simplified without the use of a string literal.


183-183: The computed expression can be simplified without the use of a string literal.


194-194: The computed expression can be simplified without the use of a string literal.


195-195: The computed expression can be simplified without the use of a string literal.


198-198: The computed expression can be simplified without the use of a string literal.


204-204: The computed expression can be simplified without the use of a string literal.


218-218: The computed expression can be simplified without the use of a string literal.


229-229: The computed expression can be simplified without the use of a string literal.


230-230: The computed expression can be simplified without the use of a string literal.

apps/services/auth/admin-api/src/app/modules/resources/resources.controller.ts (20)

95-95: Decorators are not valid here.


96-96: Decorators are not valid here.


97-97: Decorators are not valid here.


134-134: Decorators are not valid here.


135-135: Decorators are not valid here.


136-136: Decorators are not valid here.


185-185: Decorators are not valid here.


186-186: Decorators are not valid here.


187-187: Decorators are not valid here.


188-188: Decorators are not valid here.


226-226: Decorators are not valid here.


242-242: Decorators are not valid here.


259-259: Decorators are not valid here.


260-260: Decorators are not valid here.


285-285: Decorators are not valid here.


303-303: Decorators are not valid here.


313-313: Decorators are not valid here.


314-314: Decorators are not valid here.


315-315: Decorators are not valid here.


337-337: Decorators are not valid here.

libs/auth-api-lib/src/lib/resources/resources.service.ts (20)

43-43: Decorators are not valid here.


45-45: Decorators are not valid here.


47-47: Decorators are not valid here.


49-49: Decorators are not valid here.


51-51: Decorators are not valid here.


53-53: Decorators are not valid here.


55-55: Decorators are not valid here.


57-57: Decorators are not valid here.


59-59: Decorators are not valid here.


61-61: Decorators are not valid here.


63-63: Decorators are not valid here.


65-65: Decorators are not valid here.


67-67: Decorators are not valid here.


113-120: This else clause can be omitted because previous branches break early.


302-302: Unexpected any. Specify a different type.


302-302: Unexpected any. Specify a different type.


315-315: Unexpected any. Specify a different type.


336-336: Do not use template literals if interpolation and special-character handling are not needed.


359-359: Do not use template literals if interpolation and special-character handling are not needed.


409-409: Unexpected any. Specify a different type.

Path-based Instructions (8)
libs/auth-api-lib/src/lib/clients/dto/client-update.dto.ts (1)

Pattern libs/**/*: "Confirm that the code adheres to the following:

  • Reusability of components and hooks across different NextJS apps.
  • TypeScript usage for defining props and exporting types.
  • Effective tree-shaking and bundling practices."
libs/auth-api-lib/src/lib/clients/dto/client.dto.ts (1)

Pattern libs/**/*: "Confirm that the code adheres to the following:

  • Reusability of components and hooks across different NextJS apps.
  • TypeScript usage for defining props and exporting types.
  • Effective tree-shaking and bundling practices."
libs/auth-api-lib/src/lib/resources/dto/api-scope-create.dto.ts (1)

Pattern libs/**/*: "Confirm that the code adheres to the following:

  • Reusability of components and hooks across different NextJS apps.
  • TypeScript usage for defining props and exporting types.
  • Effective tree-shaking and bundling practices."
libs/auth-api-lib/src/index.ts (1)

Pattern libs/**/*: "Confirm that the code adheres to the following:

  • Reusability of components and hooks across different NextJS apps.
  • TypeScript usage for defining props and exporting types.
  • Effective tree-shaking and bundling practices."
apps/auth-admin-web/components/Resource/forms/ApiScopeCreateForm.tsx (1)

Pattern apps/**/*: "Confirm that the code adheres to the following:

  • NextJS best practices, including file structure, API routes, and static generation methods.
  • Efficient state management and server-side rendering techniques.
  • Optimal use of TypeScript for component and utility type safety."
libs/auth-api-lib/src/lib/resources/resources.service.ts (1)

Pattern libs/**/*: "Confirm that the code adheres to the following:

  • Reusability of components and hooks across different NextJS apps.
  • TypeScript usage for defining props and exporting types.
  • Effective tree-shaking and bundling practices."
apps/services/auth/admin-api/src/app/modules/resources/resources.controller.ts (2)

Pattern apps/services/**/*: "Confirm that the code adheres to the following:

  • NestJS architecture, including modules, services, and controllers.
  • Dependency injection patterns and service encapsulation.
  • Integration and unit testing coverage and practices."

Pattern apps/**/*: "Confirm that the code adheres to the following:

  • NextJS best practices, including file structure, API routes, and static generation methods.
  • Efficient state management and server-side rendering techniques.
  • Optimal use of TypeScript for component and utility type safety."
apps/auth-admin-web/components/Client/form/ClientCreateForm.tsx (1)

Pattern apps/**/*: "Confirm that the code adheres to the following:

  • NextJS best practices, including file structure, API routes, and static generation methods.
  • Efficient state management and server-side rendering techniques.
  • Optimal use of TypeScript for component and utility type safety."
Additional comments not posted (15)
libs/auth-api-lib/src/lib/clients/dto/client-update.dto.ts (1)

4-11: The refactoring of ClientUpdateDTO to exclude certain properties using OmitType aligns with the PR's goal to simplify the client DTO structure. This change ensures that the DTO only includes relevant fields, enhancing clarity and maintainability.

libs/auth-api-lib/src/lib/clients/dto/client.dto.ts (1)

5-12: The update in ClientDTO to exclude specific delegation-related properties using OmitType is a significant improvement. It simplifies the DTO structure and focuses on the essential attributes, which is crucial for the new administrative requirements.

libs/auth-api-lib/src/lib/resources/dto/api-scope-create.dto.ts (1)

5-27: The creation of CreateApiScopeDTO with specific properties and validation rules is a positive change. It ensures that the necessary data for API scopes is validated at the DTO level, which enhances data integrity and aligns with best practices in API design.

libs/auth-api-lib/src/index.ts (1)

71-71: The addition of api-scope-create.dto to the exports in index.ts is crucial for making it accessible across the application. This change supports better modularity and reusability of the DTO.

apps/auth-admin-web/components/Resource/forms/ApiScopeCreateForm.tsx (1)

452-461: The addition of a paragraph with a link to the new IDS Admin is a user-friendly way to direct users to the updated management interface. This change is in line with the PR's objectives to phase out old delegation controls and should improve the user experience by guiding them to the new system.

libs/auth-api-lib/src/lib/resources/resources.service.ts (3)

39-39: Ensure that the CreateApiScopeDTO is properly utilized in the methods where ApiScopeDTO was previously used.


520-520: The method createApiScope correctly uses the new CreateApiScopeDTO. Ensure that the assertSameAsGroup method is appropriately validating the new DTO fields.


530-530: The updateApiScope method has been updated to use CreateApiScopeDTO, which is consistent with the changes in the createApiScope method. This should ensure that the API scope updates are handled with the new DTO structure.
[APROVED]

apps/services/auth/admin-api/src/app/modules/resources/resources.controller.ts (4)

21-21: The import of CreateApiScopeDTO is correctly added to support the new DTO structure for API scope creation.


437-437: The method createApiScope now correctly accepts CreateApiScopeDTO instead of the previous ApiScopeDTO. This change aligns with the updated DTO structure and should help ensure that the API scope creation process adheres to the new data requirements.


459-459: The method updateApiScope has been updated to accept CreateApiScopeDTO instead of ApiScopeDTO. This change is consistent with the new DTO structure and ensures that the API scope update process is aligned with the latest data requirements.


Line range hint 95-95: The static analysis tool has flagged several lines with the error "Decorators are not valid here." Please verify these lines to ensure that decorators are used correctly in the context of NestJS, which may involve checking for misplaced decorators or syntax errors.

Also applies to: 96-96, 97-97, 134-134, 135-135, 136-136, 185-185, 186-186, 187-187, 188-188, 226-226, 242-242, 259-259, 260-260, 285-285, 303-303, 313-313, 314-314, 315-315, 337-337

Verification successful

The decorators in the file apps/services/auth/admin-api/src/app/modules/resources/resources.controller.ts appear to be used correctly within the context of NestJS. The decorators such as @UseGuards, @ApiExcludeController, @Controller, @Audit, @Scopes, @Get, @ApiQuery, @ApiOkResponse, @Post, @ApiCreatedResponse, @Put, and @Delete are all valid NestJS decorators and are placed appropriately above class methods and parameters.

  • The @Query decorator is used correctly to extract query parameters.
  • The @Param decorator is used correctly to extract route parameters.
  • The @Body decorator is used correctly to extract the body of the request.
  • The @CurrentUser decorator is used correctly to extract the current user from the request.

No syntax errors or misplaced decorators were found in the specified lines.

Scripts Executed

The following scripts were executed for the analysis:


Script:

#!/bin/bash
# Description: Verify the correct usage of decorators in the specified lines.

# Test: Search for decorator usage errors. Expect: No syntax errors or misplaced decorators.
rg --type python -C 3 '^\s*@' apps/services/auth/admin-api/src/app/modules/resources/resources.controller.ts

Length of output: 141



Script:

#!/bin/bash
# Description: Verify the correct usage of decorators in the specified lines.

# Test: Search for decorator usage errors. Expect: No syntax errors or misplaced decorators.
rg --type ts -C 3 '^\s*@' apps/services/auth/admin-api/src/app/modules/resources/resources.controller.ts

Length of output: 21476

apps/auth-admin-web/components/Client/form/ClientCreateForm.tsx (3)

715-724: Update the link to the new IDS Admin.

The change aligns with the PR's objective to direct users to the new admin portal for delegation management. Ensure the URL is correct and accessible.


Line range hint 70-70: Simplify computed expressions in JSX.
[REFACTOR_Suggestion]

- className={`detail-flow${localization.fields['clientType'].selectItems[clientType].flow ? ' show' : ' hidden'}`}
+ className={`detail-flow ${localization.fields['clientType'].selectItems[clientType].flow ? 'show' : 'hidden'}`}

This change removes unnecessary string literals and simplifies the expression, making the code cleaner and easier to read.

Also applies to: 71-71, 199-199, 205-205, 210-210, 213-213, 266-266, 275-275, 280-280, 289-289, 298-298, 299-299, 308-308, 317-317, 318-318, 328-328


Line range hint 108-108: Use optional chaining for safer property access.
[REFACTOR_Suggestion]

- if (response) {
+ if (response?.length > 0) {

This change ensures that the code does not throw an error if response is undefined, improving the robustness of the application.

@Herdismaria Herdismaria changed the title fix(auth-admin-web):remove delegation controls from old ids admin for client and api-scope fix(auth-admin-web): remove delegation controls from old ids admin for client and api-scope May 29, 2024
Copy link

codecov bot commented May 29, 2024

Codecov Report

All modified and coverable lines are covered by tests ✅

Project coverage is 37.12%. Comparing base (223f6a2) to head (8466ebe).

Additional details and impacted files

Impacted file tree graph

@@            Coverage Diff             @@
##             main   #14999      +/-   ##
==========================================
- Coverage   37.13%   37.12%   -0.01%     
==========================================
  Files        6391     6391              
  Lines      130067   130059       -8     
  Branches    37108    37106       -2     
==========================================
- Hits        48294    48288       -6     
+ Misses      81773    81771       -2     
Flag Coverage Δ
api 3.46% <ø> (ø)
api-domains-auth-admin 57.91% <ø> (ø)
auth-admin-web 2.43% <ø> (ø)
services-user-notification 47.58% <ø> (ø)
services-user-profile 62.72% <ø> (ø)

Flags with carried forward coverage won't be shown. Click here to find out more.

Files Coverage Δ
...in-web/components/Client/form/ClientCreateForm.tsx 0.00% <ø> (ø)
...b/components/Resource/forms/ApiScopeCreateForm.tsx 0.00% <ø> (ø)
.../src/app/modules/resources/resources.controller.ts 39.43% <ø> (-0.43%) ⬇️
libs/auth-api-lib/src/index.ts 100.00% <ø> (ø)
...pi-lib/src/lib/clients/dto/base/client-base.dto.ts 100.00% <ø> (ø)
...h-api-lib/src/lib/clients/dto/client-update.dto.ts 100.00% <ø> (ø)
...ibs/auth-api-lib/src/lib/clients/dto/client.dto.ts 100.00% <ø> (ø)
...uth-api-lib/src/lib/resources/resources.service.ts 11.56% <ø> (+0.07%) ⬆️

Continue to review full report in Codecov by Sentry.

Legend - Click here to learn more
Δ = absolute <relative> (impact), ø = not affected, ? = missing data
Powered by Codecov. Last update 223f6a2...8466ebe. Read the comment docs.

@datadog-island-is
Copy link

Datadog Report

All test runs 6e14e5c 🔗

14 Total Test Services: 0 Failed, 14 Passed
🔻 Test Sessions change in coverage: 3 decreased, 6 increased, 16 no change

Test Services
This report shows up to 10 services
Service Name Failed Known Flaky New Flaky Passed Skipped Total Time Code Coverage Change Test Service View
api 0 0 0 4 0 4.45s 1 no change Link
api-domains-auth-admin 0 0 0 18 0 18.25s 1 no change Link
application-system-api 0 0 0 111 2 3m 11.97s 1 no change Link
application-template-api-modules 0 0 0 109 0 2m 2.73s 1 decreased (-0.49%) Link
auth-admin-web 0 0 0 1 0 14.21s 1 no change Link
auth-api-lib 0 0 0 13 0 57.07s 1 decreased (-0.02%) Link
services-auth-admin-api 0 0 0 108 0 3m 56.9s 1 increased (+0.04%) Link
services-auth-delegation-api 0 0 0 254 0 3m 55.96s 1 increased (+0.04%) Link
services-auth-ids-api 0 0 0 205 0 1m 42.19s 1 increased (+0.02%) Link
services-auth-personal-representative 0 0 0 59 0 1m 33.93s 1 increased (+0.04%) Link

🔻 Code Coverage Decreases vs Default Branch (3)

  • application-template-api-modules - jest 26.08% (-0.49%) - Details
  • auth-api-lib - jest 10.74% (-0.02%) - Details
  • services-user-notification - jest 48.69% (-0.01%) - Details

Copy link
Member

@saevarma saevarma left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

🚀

@Herdismaria Herdismaria added the automerge Merge this PR as soon as all checks pass label May 31, 2024
@kodiakhq kodiakhq bot merged commit 8c99a2b into main May 31, 2024
46 checks passed
@kodiakhq kodiakhq bot deleted the fix/update-client-in-old-ids-admin branch May 31, 2024 07:23
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
automerge Merge this PR as soon as all checks pass
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants