Skip to content

chore: redirect /pints for event#1174

Merged
Hugo0 merged 3 commits intopeanut-walletfrom
chore/redirect-pints
Sep 3, 2025
Merged

chore: redirect /pints for event#1174
Hugo0 merged 3 commits intopeanut-walletfrom
chore/redirect-pints

Conversation

@kushagrasarathe
Copy link
Copy Markdown
Contributor

No description provided.

@vercel
Copy link
Copy Markdown

vercel bot commented Sep 3, 2025

The latest updates on your projects. Learn more about Vercel for GitHub.

Project Deployment Preview Comments Updated (UTC)
peanut-wallet Ready Ready Preview Comment Sep 3, 2025 6:37pm

@coderabbitai
Copy link
Copy Markdown
Contributor

coderabbitai bot commented Sep 3, 2025

Walkthrough

Updated redirects.json to change the destination for source "/pints" from "https://lu.ma/7j6g06rq" to "/adag1o/1" with the "permanent" flag unchanged (false).

Changes

Cohort / File(s) Summary
Redirects config
redirects.json
Modified the "/pints" entry: destination updated to "/adag1o/1"; "permanent": false unchanged.

Estimated code review effort

🎯 2 (Simple) | ⏱️ ~10 minutes

Possibly related PRs

Suggested reviewers

  • Hugo0
✨ Finishing Touches
🧪 Generate unit tests
  • Create PR with unit tests
  • Post copyable unit tests in a comment
  • Commit unit tests in branch chore/redirect-pints

Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out.

❤️ 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.
    • 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.
  • 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 the files in the src/scheduler package and generate a class diagram using mermaid and a README in the markdown format.

Support

Need help? Create a ticket on our support page for assistance with any issues or questions.

CodeRabbit Commands (Invoked using PR/Issue comments)

Type @coderabbitai help to get the list of available commands.

Other keywords and placeholders

  • Add @coderabbitai ignore or @coderabbit 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.

CodeRabbit Configuration 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

Status, Documentation and Community

  • Visit our Status Page to check the current availability of CodeRabbit.
  • 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
Copy Markdown
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

🧹 Nitpick comments (2)
src/middleware.ts (2)

21-24: Harden the /pints redirect (trailing slash, query preservation, explicit 302).

As written, /pints/ won’t match, and any query/UTM params are dropped. If that’s unintentional, tighten the check and preserve search params; also set a temporary status explicitly.

  • Confirm intent: should /pints?promo=...&id=... still go to the promo flow, or must everything under /pints go to /adag1o/1 during the event?
  • Please also confirm the target slug spelling: is it adag1o (digit “1”) or adagio/adag10?

Apply:

-    // redirect /pints -> /adag1o/1
-    if (request.nextUrl.pathname === '/pints') {
-        return NextResponse.redirect(new URL('/adag1o/1', request.url))
-    }
+    // redirect /pints[/] -> /adag1o/1 (temporary)
+    const pathname = request.nextUrl.pathname
+    if (pathname === '/pints' || pathname === '/pints/') {
+        const target = new URL('/adag1o/1', request.url)
+        // optional: preserve query string (e.g., UTM params). Drop this block if not desired.
+        if (url.search) target.search = url.search
+        return NextResponse.redirect(target, 302)
+    }

52-55: Matcher tweak and comment clarity.

Including /pints in the matcher is correct. Minor nit: update the comment to reflect both / and /pints.

-// Updated matcher to include root path
+// Updated matcher to include '/' (root) and '/pints' (event redirect)
 export const config = {
-    matcher: ['/', '/pints', '/claim/:path*', '/api/:path*'],
+    matcher: ['/', '/pints', '/claim/:path*', '/api/:path*'],
 }
📜 Review details

Configuration used: CodeRabbit UI

Review profile: CHILL

Plan: Pro

💡 Knowledge Base configuration:

  • MCP integration is disabled by default for public repositories
  • Jira integration is disabled by default for public repositories
  • Linear integration is disabled by default for public repositories

You can enable these sources in your CodeRabbit configuration.

📥 Commits

Reviewing files that changed from the base of the PR and between 70c2a03 and b9ffcc4.

📒 Files selected for processing (1)
  • src/middleware.ts (2 hunks)
⏰ Context from checks skipped due to timeout of 90000ms. You can increase the timeout in your CodeRabbit configuration to a maximum of 15 minutes (900000ms). (1)
  • GitHub Check: Deploy-Preview

Copy link
Copy Markdown
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

📜 Review details

Configuration used: CodeRabbit UI

Review profile: CHILL

Plan: Pro

💡 Knowledge Base configuration:

  • MCP integration is disabled by default for public repositories
  • Jira integration is disabled by default for public repositories
  • Linear integration is disabled by default for public repositories

You can enable these sources in your CodeRabbit configuration.

📥 Commits

Reviewing files that changed from the base of the PR and between b9ffcc4 and 701a2b4.

📒 Files selected for processing (1)
  • redirects.json (1 hunks)
⏰ Context from checks skipped due to timeout of 90000ms. You can increase the timeout in your CodeRabbit configuration to a maximum of 15 minutes (900000ms). (1)
  • GitHub Check: Deploy-Preview
🔇 Additional comments (1)
redirects.json (1)

39-42: LGTM: temporary redirect to internal path looks correct

  • Matches PR intent; 307 (permanent=false) is appropriate for an event link.

@Hugo0 Hugo0 merged commit e7d56a7 into peanut-wallet Sep 3, 2025
8 of 9 checks passed
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