Skip to content
Merged

Fixes #218

Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion scripts/ci/github-sync.sh
Original file line number Diff line number Diff line change
Expand Up @@ -113,4 +113,4 @@ for key in $KEYS; do
done

rm /tmp/env_parser.pl
echo "✅ Sync complete! Your GitHub Actions environment is now ready."
echo "✅ Sync complete! Your GitHub Actions environment is now ready."
7 changes: 7 additions & 0 deletions src/features/billing/server/webhook.ts
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,13 @@ import { topUpWallet, refundToWallet } from "@/features/wallet/services/wallet-s
*/

const app = new Hono()
/**
* GET /webhooks/cashfree
* Health check endpoint for Cashfree dashboard test ping
*/
.get("/cashfree", (c) => {
return c.json({ status: "ok" });
})
/**
* POST /webhooks/cashfree
* Main webhook endpoint for Cashfree events
Expand Down
Loading