Skip to content

Remixer v3 and Scraper#782

Closed
yghaemi wants to merge 9 commits into
stagingfrom
conductor/remixer
Closed

Remixer v3 and Scraper#782
yghaemi wants to merge 9 commits into
stagingfrom
conductor/remixer

Conversation

@yghaemi
Copy link
Copy Markdown

@yghaemi yghaemi commented Apr 27, 2026

No description provided.

@yghaemi yghaemi requested a review from jakeaturner April 27, 2026 16:52

const getSupportCenterHref = () => {
// Always nav to main commons in production, otherwise use the current origin (e.g. development)
if (window.location.origin.endsWith("libretexts.org")) {

const getStoreHref = () => {
// Always nav to main store in production, otherwise use the current origin (e.g. development)
if (window.location.origin.endsWith("libretexts.org")) {
Comment thread server/api/authors.ts
Comment on lines +296 to +300
const existingAuthor = await Author.findOne({
email,
isAdminEntry: false,
orgID: process.env.ORG_ID,
});
Copy link
Copy Markdown

@aikido-pr-checks aikido-pr-checks Bot Apr 27, 2026

Choose a reason for hiding this comment

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

NoSQL injection attack possible - critical severity
Query injection attacks are possible if users can pass objects instead of strings to query functions such as findOne.

By injecting query operators attackers can control the behavior of the query, allowing them to bypass access controls and extract unauthorized data. Consider the attack payload ?user_id[$ne]=5: if the user_id query parameter is passed to the query function without validation or casting its type, an attacker can pass {$ne: 5} instead of an integer to the query. {$ne: 5} uses the 'not equal to' operator to access data of other users.

While this vulnerability is known as NoSQL injection, relational databases (mysql, postgres) are also vulnerable to this attack if the query library offers a NoSQL-like API and supports string-typed query operators. Examples include prisma and sequelize versions prior to 4.12.0.

Show fix
Suggested change
const existingAuthor = await Author.findOne({
email,
isAdminEntry: false,
orgID: process.env.ORG_ID,
});
const existingAuthor = await Author.findOne({
email: { $eq: email },
isAdminEntry: false,
orgID: process.env.ORG_ID,
});

More info

Comment thread server/api/authors.ts
await authorService.deleteAuthor(req.params.id);
const { firstName, lastName, email, primaryInstitution, url } = req.body;
await Author.updateOne(
{ _id: req.params.id, orgID: process.env.ORG_ID },
Copy link
Copy Markdown

@aikido-pr-checks aikido-pr-checks Bot Apr 27, 2026

Choose a reason for hiding this comment

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

NoSQL injection attack possible - critical severity
Query injection attacks are possible if users can pass objects instead of strings to query functions such as findOne.

By injecting query operators attackers can control the behavior of the query, allowing them to bypass access controls and extract unauthorized data. Consider the attack payload ?user_id[$ne]=5: if the user_id query parameter is passed to the query function without validation or casting its type, an attacker can pass {$ne: 5} instead of an integer to the query. {$ne: 5} uses the 'not equal to' operator to access data of other users.

While this vulnerability is known as NoSQL injection, relational databases (mysql, postgres) are also vulnerable to this attack if the query library offers a NoSQL-like API and supports string-typed query operators. Examples include prisma and sequelize versions prior to 4.12.0.

Suggested change
{ _id: req.params.id, orgID: process.env.ORG_ID },
{ _id: { $eq: req.params.id }, orgID: process.env.ORG_ID },

Reply @AikidoSec ignore: [REASON] to ignore this issue.
More info

Comment thread server/api/authors.ts
Comment on lines +433 to +436
await Author.deleteOne({
_id: req.params.id,
orgID: process.env.ORG_ID,
}).orFail();
Copy link
Copy Markdown

@aikido-pr-checks aikido-pr-checks Bot Apr 27, 2026

Choose a reason for hiding this comment

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

NoSQL injection attack possible - critical severity
Query injection attacks are possible if users can pass objects instead of strings to query functions such as findOne.

By injecting query operators attackers can control the behavior of the query, allowing them to bypass access controls and extract unauthorized data. Consider the attack payload ?user_id[$ne]=5: if the user_id query parameter is passed to the query function without validation or casting its type, an attacker can pass {$ne: 5} instead of an integer to the query. {$ne: 5} uses the 'not equal to' operator to access data of other users.

While this vulnerability is known as NoSQL injection, relational databases (mysql, postgres) are also vulnerable to this attack if the query library offers a NoSQL-like API and supports string-typed query operators. Examples include prisma and sequelize versions prior to 4.12.0.

Show fix
Suggested change
await Author.deleteOne({
_id: req.params.id,
orgID: process.env.ORG_ID,
}).orFail();
await Author.deleteOne({
_id: { $eq: req.params.id },
orgID: process.env.ORG_ID,
}).orFail();

More info

subdomain,
}: RunRemixerJobParams) => {
const job = await PrejectRemixerJob.findOne({ jobID }).sort({ _id: -1 });
const remixerState = await PrejectRemixer.findOne({ projectID }).sort({ _id: -1 });
Copy link
Copy Markdown

@aikido-pr-checks aikido-pr-checks Bot Apr 27, 2026

Choose a reason for hiding this comment

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

NoSQL injection attack possible - critical severity
Query injection attacks are possible if users can pass objects instead of strings to query functions such as findOne.

By injecting query operators attackers can control the behavior of the query, allowing them to bypass access controls and extract unauthorized data. Consider the attack payload ?user_id[$ne]=5: if the user_id query parameter is passed to the query function without validation or casting its type, an attacker can pass {$ne: 5} instead of an integer to the query. {$ne: 5} uses the 'not equal to' operator to access data of other users.

While this vulnerability is known as NoSQL injection, relational databases (mysql, postgres) are also vulnerable to this attack if the query library offers a NoSQL-like API and supports string-typed query operators. Examples include prisma and sequelize versions prior to 4.12.0.

Suggested change
const remixerState = await PrejectRemixer.findOne({ projectID }).sort({ _id: -1 });
const remixerState = await PrejectRemixer.findOne({ projectID: { $eq: projectID } }).sort({ _id: -1 });

Reply @AikidoSec ignore: [REASON] to ignore this issue.
More info

Comment thread server/api/tasks.js
Comment on lines +41 to +43
Project.findOne({
projectID: req.body.projectID,
}).lean().then((project) => {
Copy link
Copy Markdown

@aikido-pr-checks aikido-pr-checks Bot Apr 27, 2026

Choose a reason for hiding this comment

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

NoSQL injection attack possible - critical severity
Query injection attacks are possible if users can pass objects instead of strings to query functions such as findOne.

By injecting query operators attackers can control the behavior of the query, allowing them to bypass access controls and extract unauthorized data. Consider the attack payload ?user_id[$ne]=5: if the user_id query parameter is passed to the query function without validation or casting its type, an attacker can pass {$ne: 5} instead of an integer to the query. {$ne: 5} uses the 'not equal to' operator to access data of other users.

While this vulnerability is known as NoSQL injection, relational databases (mysql, postgres) are also vulnerable to this attack if the query library offers a NoSQL-like API and supports string-typed query operators. Examples include prisma and sequelize versions prior to 4.12.0.

Suggested change
Project.findOne({
projectID: req.body.projectID,
}).lean().then((project) => {
Project.findOne({
projectID: { $eq: req.body.projectID },
}).lean().then((project) => {

Reply @AikidoSec ignore: [REASON] to ignore this issue.
More info

Comment thread server/api/tasks.js
Comment on lines +48 to +50
return Task.findOne({
taskID: req.body.parent,
}).lean();
Copy link
Copy Markdown

@aikido-pr-checks aikido-pr-checks Bot Apr 27, 2026

Choose a reason for hiding this comment

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

NoSQL injection attack possible - critical severity
Query injection attacks are possible if users can pass objects instead of strings to query functions such as findOne.

By injecting query operators attackers can control the behavior of the query, allowing them to bypass access controls and extract unauthorized data. Consider the attack payload ?user_id[$ne]=5: if the user_id query parameter is passed to the query function without validation or casting its type, an attacker can pass {$ne: 5} instead of an integer to the query. {$ne: 5} uses the 'not equal to' operator to access data of other users.

While this vulnerability is known as NoSQL injection, relational databases (mysql, postgres) are also vulnerable to this attack if the query library offers a NoSQL-like API and supports string-typed query operators. Examples include prisma and sequelize versions prior to 4.12.0.

Suggested change
return Task.findOne({
taskID: req.body.parent,
}).lean();
return Task.findOne({
taskID: { $eq: req.body.parent },
}).lean();

Reply @AikidoSec ignore: [REASON] to ignore this issue.
More info

Comment thread server/api/tasks.js
Comment on lines +369 to +371
return Task.updateOne({
taskID: task.taskID,
}, updateObj);
Copy link
Copy Markdown

@aikido-pr-checks aikido-pr-checks Bot Apr 27, 2026

Choose a reason for hiding this comment

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

NoSQL injection attack possible - critical severity
Query injection attacks are possible if users can pass objects instead of strings to query functions such as findOne.

By injecting query operators attackers can control the behavior of the query, allowing them to bypass access controls and extract unauthorized data. Consider the attack payload ?user_id[$ne]=5: if the user_id query parameter is passed to the query function without validation or casting its type, an attacker can pass {$ne: 5} instead of an integer to the query. {$ne: 5} uses the 'not equal to' operator to access data of other users.

While this vulnerability is known as NoSQL injection, relational databases (mysql, postgres) are also vulnerable to this attack if the query library offers a NoSQL-like API and supports string-typed query operators. Examples include prisma and sequelize versions prior to 4.12.0.

Suggested change
return Task.updateOne({
taskID: task.taskID,
}, updateObj);
return Task.updateOne({
taskID: { $eq: task.taskID },
}, updateObj);

Reply @AikidoSec ignore: [REASON] to ignore this issue.
More info

Comment thread server/api/tasks.js
Comment on lines +612 to +614
Project.findOne({
projectID: req.query.projectID,
}).lean().then((project) => {
Copy link
Copy Markdown

Choose a reason for hiding this comment

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

NoSQL injection attack possible - critical severity
Query injection attacks are possible if users can pass objects instead of strings to query functions such as findOne.

By injecting query operators attackers can control the behavior of the query, allowing them to bypass access controls and extract unauthorized data. Consider the attack payload ?user_id[$ne]=5: if the user_id query parameter is passed to the query function without validation or casting its type, an attacker can pass {$ne: 5} instead of an integer to the query. {$ne: 5} uses the 'not equal to' operator to access data of other users.

While this vulnerability is known as NoSQL injection, relational databases (mysql, postgres) are also vulnerable to this attack if the query library offers a NoSQL-like API and supports string-typed query operators. Examples include prisma and sequelize versions prior to 4.12.0.

Show fix

Remediation: User input should be validated (e.g. with class-validator, zod or joi) or sanitized (e.g. with mongo-sanitize). Alternatively cast request parameters to their expected type or use the $eq operator to block object injection. You can also Autofix all instances of NoSQL injection by installing Zen for Node.js.

Reply @AikidoSec ignore: [REASON] to ignore this issue.
More info

Comment thread server/api/books.ts
async function appendPressbooksJobMessages(jobID: string, messages: string[]) {
if (!messages.length) return;
await PressbooksImportJob.updateOne(
{ jobID },
Copy link
Copy Markdown

Choose a reason for hiding this comment

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

NoSQL injection attack possible - critical severity
Query injection attacks are possible if users can pass objects instead of strings to query functions such as findOne.

By injecting query operators attackers can control the behavior of the query, allowing them to bypass access controls and extract unauthorized data. Consider the attack payload ?user_id[$ne]=5: if the user_id query parameter is passed to the query function without validation or casting its type, an attacker can pass {$ne: 5} instead of an integer to the query. {$ne: 5} uses the 'not equal to' operator to access data of other users.

While this vulnerability is known as NoSQL injection, relational databases (mysql, postgres) are also vulnerable to this attack if the query library offers a NoSQL-like API and supports string-typed query operators. Examples include prisma and sequelize versions prior to 4.12.0.

Show fix

Remediation: User input should be validated (e.g. with class-validator, zod or joi) or sanitized (e.g. with mongo-sanitize). Alternatively cast request parameters to their expected type or use the $eq operator to block object injection. You can also Autofix all instances of NoSQL injection by installing Zen for Node.js.

Reply @AikidoSec ignore: [REASON] to ignore this issue.
More info

Comment thread server/api/tasks.js
Comment on lines +1041 to +1043
resolve(Task.findOne({
taskID,
}).lean());
Copy link
Copy Markdown

@aikido-pr-checks aikido-pr-checks Bot Apr 27, 2026

Choose a reason for hiding this comment

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

NoSQL injection attack possible - critical severity
Query injection attacks are possible if users can pass objects instead of strings to query functions such as findOne.

By injecting query operators attackers can control the behavior of the query, allowing them to bypass access controls and extract unauthorized data. Consider the attack payload ?user_id[$ne]=5: if the user_id query parameter is passed to the query function without validation or casting its type, an attacker can pass {$ne: 5} instead of an integer to the query. {$ne: 5} uses the 'not equal to' operator to access data of other users.

While this vulnerability is known as NoSQL injection, relational databases (mysql, postgres) are also vulnerable to this attack if the query library offers a NoSQL-like API and supports string-typed query operators. Examples include prisma and sequelize versions prior to 4.12.0.

Suggested change
resolve(Task.findOne({
taskID,
}).lean());
resolve(Task.findOne({
taskID: { $eq: taskID },
}).lean());

Reply @AikidoSec ignore: [REASON] to ignore this issue.
More info

Comment thread server/api/tasks.js
Comment on lines +1047 to +1049
return Project.findOne({
projectID: taskData.projectID,
}).lean();
Copy link
Copy Markdown

@aikido-pr-checks aikido-pr-checks Bot Apr 27, 2026

Choose a reason for hiding this comment

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

NoSQL injection attack possible - high severity
Query injection attacks are possible if users can pass objects instead of strings to query functions such as findOne.

By injecting query operators attackers can control the behavior of the query, allowing them to bypass access controls and extract unauthorized data. Consider the attack payload ?user_id[$ne]=5: if the user_id query parameter is passed to the query function without validation or casting its type, an attacker can pass {$ne: 5} instead of an integer to the query. {$ne: 5} uses the 'not equal to' operator to access data of other users.

While this vulnerability is known as NoSQL injection, relational databases (mysql, postgres) are also vulnerable to this attack if the query library offers a NoSQL-like API and supports string-typed query operators. Examples include prisma and sequelize versions prior to 4.12.0.

Suggested change
return Project.findOne({
projectID: taskData.projectID,
}).lean();
return Project.findOne({
projectID: { $eq: taskData.projectID },
}).lean();

Reply @AikidoSec ignore: [REASON] to ignore this issue.
More info

Comment thread server/package-lock.json
Copy link
Copy Markdown

Choose a reason for hiding this comment

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

13 Open source vulnerabilities detected - critical severity
Aikido detected 13 vulnerabilities across 4 packages, it includes 2 critical and 11 high vulnerabilities.

Details

Remediation Aikido suggests bumping the vulnerable packages to a safe version.

Reply @AikidoSec ignore: [REASON] to ignore this issue.
More info

Comment thread client/package-lock.json
Copy link
Copy Markdown

Choose a reason for hiding this comment

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

CVE-2026-2391 in qs - high severity

Summary

The arrayLimit option in qs does not enforce limits for comma-separated values when comma: true is enabled, allowing attackers to cause denial-of-service via memory exhaustion. This is a bypass of the array limit enforcement, similar to the bracket notation bypass addressed in GHSA-6rw7-vpxm-498p (CVE-2025-15284).

Details

When the comma option is set to true (not the default, but configurable in applications), qs allows parsing comma-separated strings as arrays (e.g., ?param=a,b,c becomes ['a', 'b', 'c']). However, the limit check for arrayLimit (default: 20) and the optional throwOnLimitExceeded occur after the comma-handling logic in parseArrayValue, enabling a bypass. This permits creation of arbitrarily large arrays from a single parameter, leading to excessive memory allocation.

Vulnerable code (lib/parse.js: lines ~40-50):

if (val && typeof val === 'string' && options.comma && val.indexOf(',') > -1) {
    return val.split(',');
}

if (options.throwOnLimitExceeded && currentArrayLength >= options.arrayLimit) {
    throw new RangeError('Array limit exceeded. Only ' + options.arrayLimit + ' element' + (options.arrayLimit === 1 ? '' : 's') + ' allowed in an array.');
}

return val;

The split(',') returns the array immediately, skipping the subsequent limit check. Downstream merging via utils.combine does not prevent allocation, even if it marks overflows for sparse arrays.This discrepancy allows attackers to send a single parameter with millions of commas (e.g., ?param=,,,,,,,,...), allocating massive arrays in memory without triggering limits. It bypasses the intent of arrayLimit, which is enforced correctly for indexed (a[0]=) and bracket (a[]=) notations (the latter fixed in v6.14.1 per GHSA-6rw7-vpxm-498p).

PoC

Test 1 - Basic bypass:

npm install qs
const qs = require('qs');

const payload = 'a=' + ','.repeat(25);  // 26 elements after split (bypasses arrayLimit: 5)
const options = { comma: true, arrayLimit: 5, throwOnLimitExceeded: true };

try {
  const result = qs.parse(payload, options);
  console.log(result.a.length);  // Outputs: 26 (bypass successful)
} catch (e) {
  console.log('Limit enforced:', e.message);  // Not thrown
}

Configuration:

  • comma: true
  • arrayLimit: 5
  • throwOnLimitExceeded: true

Expected: Throws "Array limit exceeded" error.
Actual: Parses successfully, creating an array of length 26.

Impact

Denial of Service (DoS) via memory exhaustion.

Details

Remediation Aikido suggests bumping this package to version 6.14.2 to resolve this issue

Reply @AikidoSec ignore: [REASON] to ignore this issue.
More info

@jakeaturner jakeaturner changed the base branch from master to staging April 27, 2026 21:16
Comment thread server/api/remixer.ts
title: 1,
_id: 0,
};
const project = await Project.findOne({ projectID: id }, projection);
Copy link
Copy Markdown

@aikido-pr-checks aikido-pr-checks Bot Apr 28, 2026

Choose a reason for hiding this comment

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

NoSQL injection attack possible - critical severity
Query injection attacks are possible if users can pass objects instead of strings to query functions such as findOne.

By injecting query operators attackers can control the behavior of the query, allowing them to bypass access controls and extract unauthorized data. Consider the attack payload ?user_id[$ne]=5: if the user_id query parameter is passed to the query function without validation or casting its type, an attacker can pass {$ne: 5} instead of an integer to the query. {$ne: 5} uses the 'not equal to' operator to access data of other users.

While this vulnerability is known as NoSQL injection, relational databases (mysql, postgres) are also vulnerable to this attack if the query library offers a NoSQL-like API and supports string-typed query operators. Examples include prisma and sequelize versions prior to 4.12.0.

Suggested change
const project = await Project.findOne({ projectID: id }, projection);
const project = await Project.findOne({ projectID: { $eq: id } }, projection);

Reply @AikidoSec ignore: [REASON] to ignore this issue.
More info

Comment thread server/api/remixer.ts
const actorUUID = (req as any).user?.decoded?.uuid ?? "";

const project = await Project.findOne(
{ projectID: id },
Copy link
Copy Markdown

@aikido-pr-checks aikido-pr-checks Bot Apr 28, 2026

Choose a reason for hiding this comment

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

NoSQL injection attack possible - critical severity
Query injection attacks are possible if users can pass objects instead of strings to query functions such as findOne.

By injecting query operators attackers can control the behavior of the query, allowing them to bypass access controls and extract unauthorized data. Consider the attack payload ?user_id[$ne]=5: if the user_id query parameter is passed to the query function without validation or casting its type, an attacker can pass {$ne: 5} instead of an integer to the query. {$ne: 5} uses the 'not equal to' operator to access data of other users.

While this vulnerability is known as NoSQL injection, relational databases (mysql, postgres) are also vulnerable to this attack if the query library offers a NoSQL-like API and supports string-typed query operators. Examples include prisma and sequelize versions prior to 4.12.0.

Suggested change
{ projectID: id },
{ projectID: { $eq: id } },

Reply @AikidoSec ignore: [REASON] to ignore this issue.
More info

Comment thread server/api/remixer.ts
}

const remixerState = await PrejectRemixer.findOneAndUpdate(
{ projectID: id, archived: false },
Copy link
Copy Markdown

@aikido-pr-checks aikido-pr-checks Bot Apr 28, 2026

Choose a reason for hiding this comment

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

NoSQL injection attack possible - critical severity
Query injection attacks are possible if users can pass objects instead of strings to query functions such as findOne.

By injecting query operators attackers can control the behavior of the query, allowing them to bypass access controls and extract unauthorized data. Consider the attack payload ?user_id[$ne]=5: if the user_id query parameter is passed to the query function without validation or casting its type, an attacker can pass {$ne: 5} instead of an integer to the query. {$ne: 5} uses the 'not equal to' operator to access data of other users.

While this vulnerability is known as NoSQL injection, relational databases (mysql, postgres) are also vulnerable to this attack if the query library offers a NoSQL-like API and supports string-typed query operators. Examples include prisma and sequelize versions prior to 4.12.0.

Suggested change
{ projectID: id, archived: false },
{ projectID: { $eq: id }, archived: false },

Reply @AikidoSec ignore: [REASON] to ignore this issue.
More info

Comment thread server/api/remixer.ts
});
}

await PrejectRemixer.deleteOne({ projectID: id });
Copy link
Copy Markdown

@aikido-pr-checks aikido-pr-checks Bot Apr 28, 2026

Choose a reason for hiding this comment

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

NoSQL injection attack possible - critical severity
Query injection attacks are possible if users can pass objects instead of strings to query functions such as findOne.

By injecting query operators attackers can control the behavior of the query, allowing them to bypass access controls and extract unauthorized data. Consider the attack payload ?user_id[$ne]=5: if the user_id query parameter is passed to the query function without validation or casting its type, an attacker can pass {$ne: 5} instead of an integer to the query. {$ne: 5} uses the 'not equal to' operator to access data of other users.

While this vulnerability is known as NoSQL injection, relational databases (mysql, postgres) are also vulnerable to this attack if the query library offers a NoSQL-like API and supports string-typed query operators. Examples include prisma and sequelize versions prior to 4.12.0.

Suggested change
await PrejectRemixer.deleteOne({ projectID: id });
await PrejectRemixer.deleteOne({ projectID: { $eq: id } });

Reply @AikidoSec ignore: [REASON] to ignore this issue.
More info

Comment thread server/api/support.ts
@@ -1334,8 +1350,7 @@ async function deleteTicket(
) {
try {
const { uuid } = req.params;
const ticketService = new SupportTicketService();
await ticketService.deleteTicket(uuid);
await SupportTicket.deleteOne({ uuid });
Copy link
Copy Markdown

@aikido-pr-checks aikido-pr-checks Bot Apr 28, 2026

Choose a reason for hiding this comment

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

NoSQL injection attack possible - critical severity
Query injection attacks are possible if users can pass objects instead of strings to query functions such as findOne.

By injecting query operators attackers can control the behavior of the query, allowing them to bypass access controls and extract unauthorized data. Consider the attack payload ?user_id[$ne]=5: if the user_id query parameter is passed to the query function without validation or casting its type, an attacker can pass {$ne: 5} instead of an integer to the query. {$ne: 5} uses the 'not equal to' operator to access data of other users.

While this vulnerability is known as NoSQL injection, relational databases (mysql, postgres) are also vulnerable to this attack if the query library offers a NoSQL-like API and supports string-typed query operators. Examples include prisma and sequelize versions prior to 4.12.0.

Suggested change
await SupportTicket.deleteOne({ uuid });
await SupportTicket.deleteOne({ uuid: { $eq: uuid } });

Reply @AikidoSec ignore: [REASON] to ignore this issue.
More info

@jakeaturner
Copy link
Copy Markdown
Collaborator

Superceded by #785

@jakeaturner jakeaturner closed this May 7, 2026
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

3 participants