refactor(bunkx): remove session handling and attendance payload logic…#19
refactor(bunkx): remove session handling and attendance payload logic…#19vishnunathasuresh wants to merge 1 commit into
Conversation
… accidentally added to the bunkialo-landing page
|
Warning Rate limit exceeded
Your organization is not enrolled in usage-based pricing. Contact your admin to enable usage-based pricing to continue reviews beyond the rate limit, or try again in 9 minutes and 4 seconds. ⌛ How to resolve this issue?After the wait time has elapsed, a review can be triggered using the 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. ℹ️ Review info⚙️ Run configurationConfiguration used: Organization UI Review profile: CHILL Plan: Pro Run ID: 📒 Files selected for processing (5)
✨ Finishing Touches🧪 Generate unit tests (beta)
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. Comment |
|
Preview |
|
eda |
This pull request removes all code related to the Bunkx attendance session handoff feature from the
bunkialo-landingapp. This includes deleting the session API endpoints, session storage logic, attendance payload parsing, and the Bunkialo page that handled session-based attendance transfers. These changes effectively disable the Bunkx attendance handoff functionality from both the backend and frontend.The most important changes are:
Removal of API Endpoints
[sid]/route.ts) that allowed clients to fetch and consume attendance sessions. (bunkialo-landing/src/app/api/bunkx/session/[sid]/route.tsL1-L31)session/route.ts) that allowed clients to create new attendance sessions.Removal of Core Logic
bunkx-session-store.ts) that managed session creation, expiration, and consumption in memory.bunkx-payload.ts) used to ensure incoming attendance data was well-formed.Removal of Frontend Integration
bunkialo/page.tsx) that handled receiving and displaying attendance data from the mobile app via session handoff.… accidentally added to the bunkialo-landing page