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(service-portal): company route signature collections #16382

Merged
merged 10 commits into from
Oct 14, 2024

Conversation

albinagu
Copy link
Member

@albinagu albinagu commented Oct 14, 2024

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

    • Added a new navigation item for company signature collections.
    • Introduced new categories under the information navigation, including "Parliamentary Lists," "Presidential Lists," and "General Petitions."
    • Enhanced routing for signature collection paths, including company-specific routes.
  • Bug Fixes

    • Improved navigation logic in the OwnerView component to ensure correct routing based on user context.
  • Documentation

    • Updated exports to include new navigation and path constants for better accessibility.

@albinagu albinagu changed the title draft fix(service-portal): company route signature collections Oct 14, 2024
Copy link

codecov bot commented Oct 14, 2024

Codecov Report

All modified and coverable lines are covered by tests ✅

Project coverage is 36.75%. Comparing base (d907f83) to head (78af1ac).
Report is 2 commits behind head on main.

Additional details and impacted files

Impacted file tree graph

@@            Coverage Diff             @@
##             main   #16382      +/-   ##
==========================================
- Coverage   36.75%   36.75%   -0.01%     
==========================================
  Files        6804     6804              
  Lines      140909   140906       -3     
  Branches    40137    40137              
==========================================
- Hits        51785    51783       -2     
+ Misses      89124    89123       -1     
Flag Coverage Δ
air-discount-scheme-web 0.00% <ø> (ø)
api 3.37% <ø> (ø)
application-api-files 57.97% <ø> (ø)
application-core 71.51% <ø> (ø)
application-system-api 41.44% <ø> (ø)
application-template-api-modules 27.95% <ø> (-0.02%) ⬇️
application-templates-accident-notification 29.29% <ø> (ø)
application-templates-car-recycling 3.12% <ø> (ø)
application-templates-criminal-record 26.35% <ø> (ø)
application-templates-driving-license 18.29% <ø> (ø)
application-templates-estate 12.31% <ø> (ø)
application-templates-example-payment 25.14% <ø> (ø)
application-templates-financial-aid 14.27% <ø> (ø)
application-templates-general-petition 23.43% <ø> (ø)
application-templates-health-insurance 26.41% <ø> (ø)
application-templates-inheritance-report 6.43% <ø> (ø)
application-templates-marriage-conditions 15.09% <ø> (ø)
application-templates-mortgage-certificate 43.75% <ø> (ø)
application-templates-parental-leave 29.97% <ø> (ø)
application-types 6.71% <ø> (ø)
application-ui-components 1.28% <ø> (ø)
application-ui-shell 21.35% <ø> (+0.07%) ⬆️
clients-charge-fjs-v2 24.11% <ø> (ø)

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

Files with missing lines Coverage Δ
...s/service-portal/information/src/lib/navigation.ts 0.00% <ø> (ø)

... and 3 files with indirect coverage changes


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 d907f83...78af1ac. Read the comment docs.

@datadog-island-is
Copy link

Datadog Report

All test runs f1f27ba 🔗

21 Total Test Services: 0 Failed, 21 Passed
🔻 Test Sessions change in coverage: 2 decreased, 90 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
air-discount-scheme-web 0 0 0 2 0 7.67s 1 no change Link
api 0 0 0 4 0 2.85s 1 no change Link
application-api-files 0 0 0 12 0 5.73s 1 no change Link
application-core 0 0 0 92 0 18.03s 1 decreased (-0.1%) Link
application-system-api 0 0 0 120 2 3m 5.32s 1 no change Link
application-template-api-modules 0 0 0 123 0 2m 17.52s 1 decreased (-0.01%) Link
application-templates-accident-notification 0 0 0 148 0 18.06s 1 no change Link
application-templates-criminal-record 0 0 0 2 0 9.84s 1 no change Link
application-templates-driving-license 0 0 0 13 0 15.57s 1 no change Link
application-templates-example-payment 0 0 0 2 0 10.73s 1 no change Link

🔻 Code Coverage Decreases vs Default Branch (2)

  • application-core - jest 79.55% (-0.1%) - Details
  • application-template-api-modules - jest 30.16% (-0.01%) - Details

@albinagu albinagu marked this pull request as ready for review October 14, 2024 12:55
@albinagu albinagu requested review from a team as code owners October 14, 2024 12:55
Copy link
Contributor

coderabbitai bot commented Oct 14, 2024

Walkthrough

The changes in this pull request introduce enhancements to the navigation structure within the service portal. A new navigation item, companySignatureCollectionNavigation, is added to the MAIN_NAVIGATION constant. Additionally, the informationNavigation object is updated with new categories under the "lists" section. The signature-collection module sees the addition of new routing paths and exports, while the OwnerView component is modified to improve navigation logic and prop type definitions.

Changes

File Path Change Summary
apps/portals/my-pages/src/lib/masterNavigation.ts Added import for companySignatureCollectionNavigation and included it in MAIN_NAVIGATION.
libs/service-portal/information/src/lib/navigation.ts Added three new categories ("Parliamentary," "Presidential," "General Petitions") under "lists".
libs/service-portal/signature-collection/src/index.ts Added export statement for export * from './lib/navigation'.
libs/service-portal/signature-collection/src/lib/navigation.ts Defined and exported companySignatureCollectionNavigation as a PortalNavigationItem.
libs/service-portal/signature-collection/src/lib/paths.ts Added two new entries to SignatureCollectionPaths enum: CompanySignatureCollectionParliamentaryLists and CompanyViewParliamentaryList.
libs/service-portal/signature-collection/src/module.tsx Updated signatureCollectionModule with new routing configurations for signature collection paths.
libs/service-portal/signature-collection/src/screens/Parliamentary/OwnerView/index.tsx Modified OwnerView component to enhance navigation logic and updated currentCollection prop type.

Possibly related PRs

Suggested reviewers

  • kksteini

📜 Recent review details

Configuration used: .coderabbit.yaml
Review profile: CHILL

📥 Commits

Files that changed from the base of the PR and between 8aed0a5 and bea828f.

📒 Files selected for processing (1)
  • libs/service-portal/information/src/lib/navigation.ts (3 hunks)
🚧 Files skipped from review as they are similar to previous changes (1)
  • libs/service-portal/information/src/lib/navigation.ts

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>, please review it.
    • 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 gather interesting stats about this repository and render them as a table. Additionally, render a pie chart showing the language distribution in the codebase.
    • @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 using 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.

Other keywords and placeholders

  • Add @coderabbitai ignore anywhere in the PR description to prevent this PR from being reviewed.
  • Add @coderabbitai summary to generate the high-level summary at a specific location in the PR description.
  • Add @coderabbitai anywhere in the PR title to generate the title automatically.

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: 2

🧹 Outside diff range and nitpick comments (2)
libs/service-portal/signature-collection/src/screens/Parliamentary/OwnerView/index.tsx (1)

114-118: LGTM: Navigation logic improvement enhances flexibility.

The conditional logic to determine the navigation path based on the current location improves the component's flexibility and reusability. This change allows the component to adapt to different contexts (company vs. individual view), adhering to the guideline of reusability across different NextJS apps.

Consider extracting the path determination logic into a separate constant for improved readability:

const navigationPath = location.pathname.includes('fyrirtaeki')
  ? SignatureCollectionPaths.CompanyViewParliamentaryList
  : SignatureCollectionPaths.ViewParliamentaryList;

navigate(
  navigationPath.replace(':id', list.id),
  {
    state: {
      collectionId: currentCollection?.id || '',
    },
  },
);

This minor refactoring would make the code slightly more readable and easier to maintain.

libs/service-portal/signature-collection/src/module.tsx (1)

Line range hint 23-32: Fix Inconsistent Route Name for General Petitions

The route for General Petitions is using the name property m.signatureCollectionParliamentaryLists, which is intended for Parliamentary Lists. This could cause confusion in the navigation labels and affect user experience.

Please update the name property to use the appropriate message key for General Petitions, such as m.signatureCollectionGeneralPetitions.

Apply this diff to correct the name property:

{
  // General Petitions
- name: m.signatureCollectionParliamentaryLists,
+ name: m.signatureCollectionGeneralPetitions,
  path: SignatureCollectionPaths.RootPath,
  enabled: userInfo.scopes.includes(ApiScope.signatureCollection),
  element: (
    /* Default path to general petitions since these are always ongoing */
    <Navigate to={SignatureCollectionPaths.GeneralPetitions} replace />
  ),
},
📜 Review details

Configuration used: .coderabbit.yaml
Review profile: CHILL

📥 Commits

Files that changed from the base of the PR and between 0d3f6b6 and e6be7ed.

📒 Files selected for processing (7)
  • apps/portals/my-pages/src/lib/masterNavigation.ts (2 hunks)
  • libs/service-portal/information/src/lib/navigation.ts (3 hunks)
  • libs/service-portal/signature-collection/src/index.ts (1 hunks)
  • libs/service-portal/signature-collection/src/lib/navigation.ts (1 hunks)
  • libs/service-portal/signature-collection/src/lib/paths.ts (1 hunks)
  • libs/service-portal/signature-collection/src/module.tsx (4 hunks)
  • libs/service-portal/signature-collection/src/screens/Parliamentary/OwnerView/index.tsx (3 hunks)
🧰 Additional context used
📓 Path-based instructions (7)
apps/portals/my-pages/src/lib/masterNavigation.ts (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/service-portal/information/src/lib/navigation.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/service-portal/signature-collection/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."
libs/service-portal/signature-collection/src/lib/navigation.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/service-portal/signature-collection/src/lib/paths.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/service-portal/signature-collection/src/module.tsx (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/service-portal/signature-collection/src/screens/Parliamentary/OwnerView/index.tsx (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."
🔇 Additional comments (15)
libs/service-portal/signature-collection/src/index.ts (1)

3-3: 🛠️ Refactor suggestion

Consider using named exports for better tree-shaking.

The addition of export * from './lib/navigation' enhances the module's interface by including all exports from the navigation module. This practice aligns with the coding guidelines for reusability across NextJS apps and maintains TypeScript type safety.

However, for optimal tree-shaking and bundling, consider using named exports instead of the wildcard export. This approach allows for more precise control over the public API and can lead to better dead code elimination during bundling.

Consider refactoring to use named exports:

export { 
  NavigationItem,
  generateNavigationItems,
  // ... other specific exports
} from './lib/navigation';

This change would require knowledge of the specific exports from the navigation module. Could you provide the contents of the ./lib/navigation file so we can suggest a more precise export statement?

To ensure this change doesn't introduce any breaking changes, let's verify the usage of the navigation exports:

This will help us understand how the navigation exports are being used across the project.

✅ Verification successful

Wildcard export is appropriate given the single export in navigation.ts.

The current usage of export * from './lib/navigation' in index.ts effectively re-exports the sole named export companySignatureCollectionNavigation. This approach aligns with the module's structure and does not negatively impact tree-shaking or bundling.

🏁 Scripts executed

The following scripts were executed for the analysis:

Script:

#!/bin/bash
# Search for imports from the signature-collection module
rg --type typescript "from ['\"]@island\.is/service-portal/signature-collection['\"]" -A 5

Length of output: 131


Script:

#!/bin/bash
# Search for imports from the signature-collection module using the correct TypeScript file type
rg --type ts "from ['\"]@island\.is/service-portal/signature-collection['\"]" -A 5

Length of output: 1738


Script:

#!/bin/bash
# List all named exports from ./lib/navigation.ts
rg 'export\s+(const|function|class|interface|type)\s+' libs/service-portal/signature-collection/src/lib/navigation.ts

Length of output: 195

libs/service-portal/signature-collection/src/lib/navigation.ts (1)

1-12: LGTM! The code adheres to the coding guidelines.

The implementation of companySignatureCollectionNavigation looks good and follows the required guidelines:

  1. Reusability: This constant can be easily imported and used across different NextJS apps within the project.
  2. TypeScript usage: The constant is correctly typed as PortalNavigationItem, which enhances type safety.
  3. Tree-shaking: The use of named imports and exports facilitates effective tree-shaking.

Additional positive observations:

  • The code structure is clean and well-organized.
  • Localization is properly implemented using the m object for internationalized strings.
  • Naming conventions are clear and descriptive.
libs/service-portal/signature-collection/src/lib/paths.ts (1)

9-12: LGTM! New company-specific paths added consistently.

The new enum entries for company-specific parliamentary signature collections are well-structured and consistent with the existing patterns. They maintain the reusability of the SignatureCollectionPaths enum across different NextJS apps while leveraging TypeScript for type safety.

A few observations:

  1. The new paths use '/fyrirtaeki/listar' as the base, clearly differentiating company-specific routes from individual user routes.
  2. The naming convention follows the established pattern, enhancing code readability and maintainability.
  3. The TypeScript enum ensures type safety when using these paths throughout the application.
apps/portals/my-pages/src/lib/masterNavigation.ts (3)

25-25: LGTM: New import statement is consistent with existing patterns.

The import of companySignatureCollectionNavigation follows the established conventions for importing navigation items in this file. It maintains consistency in naming and module path structure.


25-25: Summary: Navigation structure enhanced with company signature collection.

The changes in this file effectively integrate the new companySignatureCollectionNavigation into the existing navigation structure. The addition is consistent with the established patterns and enhances the portal's functionality for company-related operations.

Key points:

  1. New import added correctly.
  2. Navigation item placed logically within the hierarchy.

These changes align well with NextJS best practices and maintain type safety with TypeScript.

Also applies to: 51-51


51-51: LGTM: New navigation item added correctly.

The companySignatureCollectionNavigation item is appropriately placed within the MAIN_NAVIGATION structure, maintaining consistency with the existing navigation hierarchy.

To ensure the new navigation item is properly implemented, please run the following verification script:

✅ Verification successful

: The companySignatureCollectionNavigation item is correctly implemented and properly exported in the codebase.

🏁 Scripts executed

The following scripts were executed for the analysis:

Script:

#!/bin/bash
# Description: Verify the implementation of companySignatureCollectionNavigation

# Test: Check if the companySignatureCollectionNavigation is exported from the correct module
rg --type typescript -A 5 'export.*companySignatureCollectionNavigation' apps/service-portal/signature-collection

# Test: Verify the structure of companySignatureCollectionNavigation
ast-grep --lang typescript --pattern $'const companySignatureCollectionNavigation: PortalNavigationItem = {
  $$$
}'

Length of output: 1076

libs/service-portal/information/src/lib/navigation.ts (4)

Line range hint 58-70: LGTM: Parliamentary navigation item added correctly

The new navigation item for parliamentary lists is well-structured and follows the existing patterns in the file. It demonstrates good practices such as:

  • Using TypeScript for type safety
  • Importing paths from a separate module (SignatureCollectionPaths) for better modularity
  • Using the m object for labels, which supports internationalization

These practices align with the coding guidelines for reusability and TypeScript usage.


Line range hint 70-82: LGTM: Presidential navigation item added consistently

The presidential lists navigation item is implemented consistently with the parliamentary item. It maintains:

  • Proper TypeScript usage
  • Modular path imports from SignatureCollectionPaths
  • Internationalization support via the m object

This consistency in structure and best practices contributes to the overall maintainability of the codebase.


Line range hint 82-98: LGTM: General Petitions navigation item added with appropriate structure

The general petitions navigation item is well-implemented and extends the pattern established by the previous items. Notable points:

  • Consistent use of TypeScript for type safety
  • Proper import of paths from PetitionPaths
  • Continued use of the m object for internationalization
  • Appropriate addition of a second child item to accommodate both general and owned petitions

This implementation demonstrates good adaptability of the existing structure to meet specific navigation requirements while maintaining code consistency.


Line range hint 58-98: Overall: Excellent implementation of new navigation items

The additions to the informationNavigation object are well-implemented and consistent. They enhance the navigation structure while adhering to best practices:

  1. Reusability: The modular structure and use of imported paths (SignatureCollectionPaths, PetitionPaths) promote reusability across different NextJS apps.
  2. TypeScript usage: Proper use of TypeScript for type safety throughout the additions.
  3. Internationalization: Consistent use of the m object for labels supports multi-language capabilities.
  4. Consistency: The new items follow the established pattern in the file, maintaining code consistency.

These changes align well with the coding guidelines for the libs directory and contribute to a maintainable and scalable codebase.

libs/service-portal/signature-collection/src/screens/Parliamentary/OwnerView/index.tsx (3)

14-14: LGTM: Import statement addition is appropriate.

The addition of useLocation from 'react-router-dom' is consistent with the changes in navigation logic and adheres to the guideline of reusability across different NextJS apps.


40-41: LGTM: Prop type definition enhances type safety.

The explicit definition of currentCollection: SignatureCollection improves type safety and adheres to the TypeScript usage guideline. This change enhances the component's reusability and maintainability across different NextJS apps.


Line range hint 1-238: Overall changes adhere to coding guidelines and improve component functionality.

The modifications to this file, including the addition of useLocation, explicit prop type definition, and improved navigation logic, are consistent with the coding guidelines for libs/**/* files. These changes enhance the component's reusability, type safety, and flexibility across different NextJS apps.

The updates do not introduce any issues with tree-shaking or bundling practices. The component remains well-structured and maintainable.

libs/service-portal/signature-collection/src/module.tsx (2)

Line range hint 23-83: Validate Access Control and Scopes

All routes are enabled based on userInfo.scopes.includes(ApiScope.signatureCollection). Ensure that this scope check correctly reflects the intended access control, especially with the introduction of company-specific routes.

Please confirm that users without the signatureCollection scope cannot access these routes.


67-83: Check for Effective Tree-Shaking and Bundling

Adding new routes and components can impact the application's bundle size if not handled properly.

Please verify that the components imported (e.g., SignatureListsParliamentary, ViewListParliamentary) are properly optimized for tree-shaking. Ensure that unused code is eliminated during the build process to maintain optimal performance.

Run the following script to check for any large imports that might affect bundling:

@albinagu albinagu added the deprecated:automerge (Disabled) Merge this PR as soon as all checks pass label Oct 14, 2024
@kodiakhq kodiakhq bot merged commit 166f7d6 into main Oct 14, 2024
27 of 28 checks passed
@kodiakhq kodiakhq bot deleted the signature-collections-companyroute branch October 14, 2024 13:46
kksteini pushed a commit that referenced this pull request Oct 16, 2024
* draft

* chore: nx format:write update dirty files

* fix: company path

* tweaks

* p

* view list company path

* chore: nx format:write update dirty files

* nav tweak

---------

Co-authored-by: andes-it <builders@andes.is>
Co-authored-by: Ásdís Erna Guðmundsdóttir <disa.erna@gmail.com>
kodiakhq bot added a commit that referenced this pull request Oct 16, 2024
* fix(service-portal): company route signature collections (#16382)

* draft

* chore: nx format:write update dirty files

* fix: company path

* tweaks

* p

* view list company path

* chore: nx format:write update dirty files

* nav tweak

---------

Co-authored-by: andes-it <builders@andes.is>
Co-authored-by: Ásdís Erna Guðmundsdóttir <disa.erna@gmail.com>

* fix(service-portal): sp list submitted (#16383)

* fix(service-portal): sp list submitted

* tweak

* chore: nx format:write update dirty files

---------

Co-authored-by: kodiakhq[bot] <49736102+kodiakhq[bot]@users.noreply.github.com>
Co-authored-by: andes-it <builders@andes.is>

* fix(portals-admin): adding report date (#16384)

* fix(portals-admin): adding report date

* chore: nx format:write update dirty files

* tweak

* tweak supervisors info

* chore: nx format:write update dirty files

* tweak

* message - company card

* tweak

* t

* t

* chore: nx format:write update dirty files

---------

Co-authored-by: andes-it <builders@andes.is>
Co-authored-by: kodiakhq[bot] <49736102+kodiakhq[bot]@users.noreply.github.com>

* fix(signature-collection): tweaks 15.10 (#16402)

* tweaka

* chore: nx format:write update dirty files

---------

Co-authored-by: andes-it <builders@andes.is>
Co-authored-by: kodiakhq[bot] <49736102+kodiakhq[bot]@users.noreply.github.com>

* fix(signature-collection): Tweaks for parliamentary collection (#16407)

* Tweaks for parliamentary collection

* revertt'

* Update libs/api/domains/signature-collection/src/lib/signatureCollection.service.ts

Co-authored-by: coderabbitai[bot] <136622811+coderabbitai[bot]@users.noreply.github.com>

* managers should see other managers

---------

Co-authored-by: coderabbitai[bot] <136622811+coderabbitai[bot]@users.noreply.github.com>
Co-authored-by: kodiakhq[bot] <49736102+kodiakhq[bot]@users.noreply.github.com>

* fix(signature-collection): Fix paper signatures for candidacy (#16411)

Co-authored-by: kodiakhq[bot] <49736102+kodiakhq[bot]@users.noreply.github.com>

* fix(signature-collections): ongoing updates (#16409)

* tweaks

* tweak - create list

* copylink

* chore: nx format:write update dirty files

---------

Co-authored-by: andes-it <builders@andes.is>
Co-authored-by: kodiakhq[bot] <49736102+kodiakhq[bot]@users.noreply.github.com>

---------

Co-authored-by: albinagu <47886428+albinagu@users.noreply.github.com>
Co-authored-by: andes-it <builders@andes.is>
Co-authored-by: Ásdís Erna Guðmundsdóttir <disa.erna@gmail.com>
Co-authored-by: kodiakhq[bot] <49736102+kodiakhq[bot]@users.noreply.github.com>
Co-authored-by: juni-haukur <158475136+juni-haukur@users.noreply.github.com>
Co-authored-by: coderabbitai[bot] <136622811+coderabbitai[bot]@users.noreply.github.com>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
deprecated:automerge (Disabled) Merge this PR as soon as all checks pass
Projects
None yet
Development

Successfully merging this pull request may close these issues.

5 participants