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

chore(j-s): Show send to prison admin file #17148

Merged
merged 15 commits into from
Dec 13, 2024

Conversation

oddsson
Copy link
Member

@oddsson oddsson commented Dec 5, 2024

Show send to prison admin file

Asana

What

When public prosecutor staff send cases to prison admin, they can upload a file with the request. That has been implemented but we forgot to show the uploaded file in file lists.

Screenshots / Gifs

Screenshot 2024-12-05 at 14 49 48

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 message for the "sent to prison admin" section in the Indictment Case Files List.
    • Introduced a modular FileSection component for improved case file organization.
    • Implemented hooks for filtering case files and managing user permissions.
  • Bug Fixes

    • Enhanced user permission checks for viewing specific case file categories.
  • Refactor

    • Improved the structure and clarity of the Indictment Case Files List component.

@oddsson oddsson requested a review from a team as a code owner December 5, 2024 14:50
Copy link
Contributor

coderabbitai bot commented Dec 5, 2024

Warning

Rate limit exceeded

@oddsson has exceeded the limit for the number of commits or files that can be reviewed per hour. Please wait 22 minutes and 12 seconds before requesting another review.

⌛ How to resolve this issue?

After the wait time has elapsed, a review can be triggered using the @coderabbitai review command as a PR comment. Alternatively, push new commits to this PR.

We recommend that you space out your commits to avoid hitting the rate limit.

🚦 How do rate limits work?

CodeRabbit enforces hourly rate limits for each developer per organization.

Our paid plans have higher rate limits than the trial, open-source and free plans. In all cases, we re-allow further reviews after a brief timeout.

Please see our FAQ for further information.

📥 Commits

Reviewing files that changed from the base of the PR and between 855f0ae and cd77760.

📒 Files selected for processing (1)
  • apps/judicial-system/web/src/components/IndictmentCaseFilesList/IndictmentCaseFilesList.tsx (9 hunks)

Walkthrough

The pull request introduces several enhancements to the IndictmentCaseFilesList component and related files. A new message for localization is added, and the component's structure is improved by implementing a FileSection component for better organization of case file categories. The filtering logic is centralized through a new hook, useFilteredCaseFiles, and user permissions are managed with another new hook, useFilePermissions. Additionally, modifications are made to user role-checking functions to streamline logic and enhance consistency.

Changes

File Change Summary
apps/judicial-system/web/src/components/IndictmentCaseFilesList/IndictmentCaseFilesList.strings.ts Added a new message sentToPrisonAdmin with id, defaultMessage, and description for localization.
apps/judicial-system/web/src/components/IndictmentCaseFilesList/IndictmentCaseFilesList.tsx Introduced FileSection component, refactored rendering logic, added useFilteredCaseFiles and useFilePermissions hooks, and updated import statements.
libs/judicial-system/types/src/lib/user.ts Modified user-checking functions to remove optional chaining and updated the parameter type for isPrisonAdminUser to accept an optional user object.

Possibly related PRs

Suggested reviewers

  • unakb

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 generate docstrings to generate docstrings for this PR. (Experiment)
  • @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: 4

🧹 Outside diff range and nitpick comments (4)
apps/judicial-system/web/src/components/ServiceAnnouncement/ServiceAnnouncement.tsx (2)

Line range hint 17-89: Consider extracting utility functions to a separate file

The mapping and rendering utility functions could be moved to a separate file (e.g., ServiceAnnouncement.utils.ts) to improve modularity and make them reusable across other components.


Line range hint 91-94: Enhance type safety for messages and AlertMessage

Consider these type safety improvements:

  1. Define a specific type for the messages array
  2. Use a discriminated union type for the AlertMessage variant
type ServiceMessage = string;
type AlertVariant = 'info' | 'warning' | 'success';

interface ServiceAnnouncementProps {
  subpoena: Subpoena;
  defendantName?: string | null;
}

const messages: ServiceMessage[] = subpoena
  ? mapServiceStatusMessages(subpoena, formatMessage, lawyer)
  : [];

Also applies to: 124-125

apps/judicial-system/web/src/components/IndictmentCaseFilesList/IndictmentCaseFilesList.tsx (2)

48-53: Consider renaming the FileSection interface to avoid confusion with the component.

Having both an interface and a component named FileSection can be confusing and may lead to naming conflicts. Consider renaming the interface to better reflect its purpose, such as FileSectionProps.

Apply this diff to rename the interface:

-interface FileSection {
+interface FileSectionProps {
  title: string
  onOpenFile: (fileId: string) => void
  files?: CaseFile[]
  shouldRender?: boolean
}

And update the component's props accordingly:

-const FileSection: FC<FileSection> = (props: FileSection) => {
+const FileSection: FC<FileSectionProps> = (props: FileSectionProps) => {

79-80: Simplify the conditional return in FileSection component.

The early return for the condition !files?.length || !shouldRender can be made more concise and readable.

Apply this diff to simplify the return statement:

-if (!files?.length || !shouldRender) {
+if (!shouldRender || !files?.length) {
    return null
}
📜 Review details

Configuration used: .coderabbit.yaml
Review profile: CHILL

📥 Commits

Reviewing files that changed from the base of the PR and between 5a1b1a6 and b13e8cb.

📒 Files selected for processing (4)
  • apps/judicial-system/web/src/components/IndictmentCaseFilesList/IndictmentCaseFilesList.strings.ts (1 hunks)
  • apps/judicial-system/web/src/components/IndictmentCaseFilesList/IndictmentCaseFilesList.tsx (9 hunks)
  • apps/judicial-system/web/src/components/ServiceAnnouncement/ServiceAnnouncement.tsx (1 hunks)
  • libs/judicial-system/types/src/lib/user.ts (4 hunks)
🧰 Additional context used
📓 Path-based instructions (4)
apps/judicial-system/web/src/components/IndictmentCaseFilesList/IndictmentCaseFilesList.strings.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/judicial-system/types/src/lib/user.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/judicial-system/web/src/components/ServiceAnnouncement/ServiceAnnouncement.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."
apps/judicial-system/web/src/components/IndictmentCaseFilesList/IndictmentCaseFilesList.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 (6)
apps/judicial-system/web/src/components/ServiceAnnouncement/ServiceAnnouncement.tsx (1)

Line range hint 96-146: Well-structured component with proper state management

The component demonstrates good practices:

  • Clean separation of concerns using custom hooks
  • Proper handling of loading and error states
  • Clear conditional rendering logic
apps/judicial-system/web/src/components/IndictmentCaseFilesList/IndictmentCaseFilesList.tsx (1)

169-170: Verify that useFilteredCaseFiles and useFilePermissions hooks are memoized correctly.

Ensure that the dependencies for the useMemo hooks within useFilteredCaseFiles and useFilePermissions are accurately specified to prevent unnecessary re-renders.

Run the following script to check for potential issues with dependencies:

✅ Verification successful

Let me search for the specific hooks mentioned in the review comment.


Let me try a different search approach to find these hooks.


Both hooks are properly memoized with appropriate dependencies

Looking at the implementations:

  1. useFilteredCaseFiles uses useMemo with [caseFiles] as dependency, which is correct since it only needs to recompute when the input case files change.

  2. useFilePermissions uses useMemo with [user, workingCase.hasCivilClaims] as dependencies, which is appropriate as the permissions only need to be recalculated when the user or civil claims status changes.

Both hooks have been implemented with proper memoization patterns and their dependency arrays contain the minimal set of values needed for their computations.

🏁 Scripts executed

The following scripts were executed for the analysis:

Script:

#!/bin/bash
# Description: Check for missing dependencies in useMemo hooks.

# Search for useMemo hooks and list their dependencies.
rg 'useMemo\(([\s\S]*?)\[\s*(.*?)\s*\]\s*\)' -g '*.tsx' -o --replace '$2' --context 2

Length of output: 6967


Script:

#!/bin/bash
# Search for useFilteredCaseFiles and useFilePermissions implementations
ast-grep --pattern 'const useFilteredCaseFiles = $_' -l typescript
ast-grep --pattern 'const useFilePermissions = $_' -l typescript

# Show the implementations if found
rg -A 10 "const useFilteredCaseFiles = " --type typescript
rg -A 10 "const useFilePermissions = " --type typescript

Length of output: 325


Script:

#!/bin/bash
# Search for the hooks in tsx files
rg -A 10 "const useFilteredCaseFiles = " --type-add 'tsx:*.{tsx,ts}' --type tsx
rg -A 10 "const useFilePermissions = " --type-add 'tsx:*.{tsx,ts}' --type tsx

# Also search for any useMemo usage within these hooks
rg "useFilteredCaseFiles|useFilePermissions" -B 5 -A 15 --type-add 'tsx:*.{tsx,ts}' --type tsx

Length of output: 10787

libs/judicial-system/types/src/lib/user.ts (4)

88-88: ⚠️ Potential issue

Potential null pointer exception due to removed optional chaining.

Same concern as before; ensure that user.institution is defined before accessing type.

Apply this diff:

-  user.institution.type === InstitutionType.DISTRICT_COURT
+  user?.institution?.type === InstitutionType.DISTRICT_COURT

Likely invalid or redundant comment.


112-113: ⚠️ Potential issue

Potential null pointer exception due to removed optional chaining.

Accessing user.institution.type without checking if user.institution is defined may cause an error.

Apply this diff:

-  (user.institution.type === InstitutionType.PRISON ||
-    user.institution.type === InstitutionType.PRISON_ADMIN)
+  (user?.institution?.type === InstitutionType.PRISON ||
+    user.institution?.type === InstitutionType.PRISON_ADMIN)

Likely invalid or redundant comment.


73-74: ⚠️ Potential issue

Potential null pointer exception due to removed optional chaining.

The removal of optional chaining (user?.institution?.type) may lead to runtime errors if user or user.institution is undefined. Ensure that user and user.institution are always defined before accessing their properties.

Apply this diff to restore optional chaining:

-  user.institution.type === InstitutionType.PROSECUTORS_OFFICE &&
-  user.institution.id === '8f9e2f6d-6a00-4a5e-b39b-95fd110d762e'
+  user?.institution?.type === InstitutionType.PROSECUTORS_OFFICE &&
+  user.institution?.id === '8f9e2f6d-6a00-4a5e-b39b-95fd110d762e'

Likely invalid or redundant comment.


102-102: ⚠️ Potential issue

Potential null pointer exception due to removed optional chaining.

Ensure safe access to user.institution.type.

Apply this diff:

-  user.institution.type === InstitutionType.COURT_OF_APPEALS
+  user?.institution?.type === InstitutionType.COURT_OF_APPEALS

Likely invalid or redundant comment.

Copy link

codecov bot commented Dec 5, 2024

Codecov Report

Attention: Patch coverage is 78.00000% with 11 lines in your changes missing coverage. Please review.

Project coverage is 35.73%. Comparing base (88f72f6) to head (cd77760).
Report is 1 commits behind head on main.

Files with missing lines Patch % Lines
...ndictmentCaseFilesList/IndictmentCaseFilesList.tsx 78.57% 9 Missing ⚠️
libs/judicial-system/types/src/lib/user.ts 75.00% 2 Missing ⚠️
Additional details and impacted files

Impacted file tree graph

@@            Coverage Diff             @@
##             main   #17148      +/-   ##
==========================================
- Coverage   35.74%   35.73%   -0.02%     
==========================================
  Files        6937     6934       -3     
  Lines      148180   148118      -62     
  Branches    42255    42244      -11     
==========================================
- Hits        52971    52930      -41     
+ Misses      95209    95188      -21     
Flag Coverage Δ
judicial-system-api 20.16% <12.50%> (ø)
judicial-system-backend 55.85% <75.00%> (+0.02%) ⬆️
judicial-system-formatters 78.28% <12.50%> (ø)
judicial-system-message 66.48% <ø> (ø)
judicial-system-message-handler 48.16% <ø> (ø)
judicial-system-scheduler 70.88% <12.50%> (ø)
judicial-system-types 42.22% <0.00%> (ø)
judicial-system-web 27.93% <72.00%> (+0.04%) ⬆️

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

Files with missing lines Coverage Δ
...ntCaseFilesList/IndictmentCaseFilesList.strings.ts 100.00% <ø> (ø)
libs/judicial-system/types/src/lib/user.ts 89.18% <75.00%> (ø)
...ndictmentCaseFilesList/IndictmentCaseFilesList.tsx 76.92% <78.57%> (+8.31%) ⬆️

... and 73 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 88f72f6...cd77760. Read the comment docs.

@datadog-island-is
Copy link

datadog-island-is bot commented Dec 5, 2024

Datadog Report

All test runs b39e5f4 🔗

10 Total Test Services: 0 Failed, 10 Passed
➡️ Test Sessions change in coverage: 13 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
judicial-system-api 0 0 0 61 0 6.92s 1 no change Link
judicial-system-backend 0 0 0 21247 0 21m 33.54s 1 no change Link
judicial-system-formatters 0 0 0 38 0 5.4s 1 no change Link
judicial-system-message 0 0 0 38 0 11.39s 1 no change Link
judicial-system-message-handler 0 0 0 4 0 3.65s 1 no change Link
judicial-system-scheduler 0 0 0 4 0 4.31s 1 no change Link
judicial-system-types 0 0 0 23 0 7.2s 1 no change Link
judicial-system-web 0 0 0 332 0 1m 8.12s 1 no change Link
judicial-system-xrd-api 0 0 0 6 0 5.2s 1 no change Link
web 0 0 0 84 0 30.49s 1 no change Link

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 (5)
apps/judicial-system/web/src/components/IndictmentCaseFilesList/IndictmentCaseFilesList.tsx (5)

48-54: Consider renaming the FileSection interface to FileSectionProps.

To improve clarity and avoid confusion between the FileSection component and its props interface, consider renaming the FileSection interface to FileSectionProps.


75-75: Simplify the component's type annotations.

The explicit type annotation (props: FileSection) is redundant since the props type is already specified in FC<FileSection>. You can simplify the component definition:

-const FileSection: FC<FileSection> = (props: FileSection) => {
+const FileSection: FC<FileSection> = (props) => {

240-260: Use FileSection component for consistency in rendering.

In the "Ruling and Court Records" section, files are rendered directly using <RenderFiles> instead of the FileSection component. For consistency and to reduce code duplication, consider using the FileSection component here.


306-317: Consider unifying file section rendering for uploaded case files.

The "Uploaded Case Files" section uses CaseFileTable for rendering, whereas other sections use the FileSection component with RenderFiles. For consistency, consider adapting FileSection to accommodate CaseFileTable or explain the necessity of using a different component.


92-128: Add unit tests for new hooks to ensure reliability.

The newly introduced hooks useFilteredCaseFiles and useFilePermissions are critical for file filtering and permission management. Adding unit tests for these hooks will help ensure they function correctly across various cases and user roles.

Also applies to: 130-147

📜 Review details

Configuration used: .coderabbit.yaml
Review profile: CHILL

📥 Commits

Reviewing files that changed from the base of the PR and between b13e8cb and 4ba0fb2.

📒 Files selected for processing (2)
  • apps/judicial-system/web/src/components/IndictmentCaseFilesList/IndictmentCaseFilesList.strings.ts (1 hunks)
  • apps/judicial-system/web/src/components/IndictmentCaseFilesList/IndictmentCaseFilesList.tsx (9 hunks)
🚧 Files skipped from review as they are similar to previous changes (1)
  • apps/judicial-system/web/src/components/IndictmentCaseFilesList/IndictmentCaseFilesList.strings.ts
🧰 Additional context used
📓 Path-based instructions (1)
apps/judicial-system/web/src/components/IndictmentCaseFilesList/IndictmentCaseFilesList.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."

Copy link
Member

@unakb unakb left a comment

Choose a reason for hiding this comment

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

Nice change! One thought

@oddsson oddsson added the automerge Merge this PR as soon as all checks pass label Dec 12, 2024
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: 1

🧹 Outside diff range and nitpick comments (1)
apps/judicial-system/web/src/components/IndictmentCaseFilesList/IndictmentCaseFilesList.tsx (1)

77-92: Consider memoizing the FileSection component.

The component is well-implemented, but since it's used multiple times in the parent component, it could benefit from memoization to prevent unnecessary re-renders.

-const FileSection: FC<FileSection> = (props: FileSection) => {
+const FileSection: FC<FileSection> = React.memo((props: FileSection) => {
   const { title, files, onOpenFile, shouldRender = true } = props
   // ... rest of the component
-}
+})
📜 Review details

Configuration used: .coderabbit.yaml
Review profile: CHILL
Plan: Pro

📥 Commits

Reviewing files that changed from the base of the PR and between 4ba0fb2 and 855f0ae.

📒 Files selected for processing (1)
  • apps/judicial-system/web/src/components/IndictmentCaseFilesList/IndictmentCaseFilesList.tsx (9 hunks)
🧰 Additional context used
📓 Path-based instructions (1)
apps/judicial-system/web/src/components/IndictmentCaseFilesList/IndictmentCaseFilesList.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 (3)
apps/judicial-system/web/src/components/IndictmentCaseFilesList/IndictmentCaseFilesList.tsx (3)

50-55: LGTM! Well-structured interface for the FileSection component.

The FileSection interface is well-defined with clear, optional properties that support the component's functionality.


94-129: LGTM! Implementation aligns with PR objectives.

The useFilteredCaseFiles hook effectively handles the filtering of prison admin files, addressing the PR's main objective of displaying uploaded files in the file lists.


326-331: Verify prison admin file access implementation.

While the permission check is in place, we should verify that the backend API also enforces these access controls to prevent unauthorized access to prison admin files.

✅ Verification successful

Let me check the backend permission guards more thoroughly.


Let me try a different approach to check the backend routes and guards.


Let me check one final aspect - the route that uses these guards.


Backend properly enforces prison admin file access controls

The backend implementation includes multiple layers of security for prison admin files:

  • CreateDefendantCaseFileGuard specifically validates the SENT_TO_PRISON_ADMIN_FILE category
  • The file controller uses multiple guards including role checks and case access verification
  • The guard throws a ForbiddenException for unauthorized access attempts
🏁 Scripts executed

The following scripts were executed for the analysis:

Script:

#!/bin/bash
# Search for backend permission checks for prison admin files
rg -A 5 "SENT_TO_PRISON_ADMIN_FILE" --type ts

Length of output: 3251


Script:

#!/bin/bash
# Search for backend permission checks and routes related to prison admin files
ast-grep --pattern 'class $_ implements $_ {
  $$$
  async canActivate($_, $_) {
    $$$
  }
  $$$
}'

# Also check for route decorators and guards
rg "@UseGuards.*CreateDefendantCaseFile" -A 5 --type ts

Length of output: 161


Script:

#!/bin/bash
# Search for file-related controllers and routes
rg -A 10 "@Controller.*file" --type ts

# Check for file-related guards
rg -A 10 "export class.*Guard" --type ts | rg -A 10 "file|File"

Length of output: 10392


Script:

#!/bin/bash
# Search for file controller and its routes in judicial system
rg -A 15 "@Controller.*file" apps/judicial-system/backend/src/app/modules/file/

# Check for routes using the CreateDefendantCaseFileGuard
rg -B 5 "CreateDefendantCaseFileGuard" apps/judicial-system/backend/src/app/modules/file/

Length of output: 2286

@unakb unakb removed the automerge Merge this PR as soon as all checks pass label Dec 13, 2024
@oddsson oddsson added the automerge Merge this PR as soon as all checks pass label Dec 13, 2024
@kodiakhq kodiakhq bot merged commit 42c998d into main Dec 13, 2024
44 of 53 checks passed
@kodiakhq kodiakhq bot deleted the j-s/show-send-to-prison-admin-file branch December 13, 2024 22:18
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