Fix verify_token import path in authentication dependencies#83
Fix verify_token import path in authentication dependencies#83ZainabTravadi wants to merge 1 commit into
Conversation
|
@ZainabTravadi is attempting to deploy a commit to the devloperdevesh's projects Team on Vercel. A member of the Team first needs to authorize it. |
|
Hey @ZainabTravadi! Saw your work on GSSoC 2026. We are building TermUI, a TypeScript terminal UI framework with React-style hooks and JSX, rendered entirely in the terminal. We have 99 unassigned GSSoC issues open, including well-scoped bug fixes with clear repro steps. Your TypeScript background transfers directly. Karanjot, TermUI maintainer |
|
Hi @Karanjot786 Thank you for reaching out! TermUI looks really interesting, especially the React-style hooks and JSX approach for terminal applications. I’m currently exploring a few GSSoC repositories focused on backend systems, AI infrastructure, and developer tooling, but I’d be happy to take a look at TermUI’s open issues as well. I’ll review the repository and contribution guidelines and see where I can contribute. Looking forward to exploring the project! |
Description
This PR fixes an incorrect import path in
app/core/dependencies.py.The module was importing
verify_tokenfromcore.security, but the implementation exists underapp.core.security. This could lead to aModuleNotFoundErrorwhen importing authentication dependencies in a clean environment.The fix updates the import to use the correct package path and adds a regression test to ensure the dependency module imports successfully.
Type of Change
Related Issue
Closes #82
Checklist
Notes
Changes
verify_tokenimport fromcore.securitytoapp.core.security.app.core.dependenciesimports correctly and resolvesverify_tokenfrom the expected module.Impact
This contribution is part of GSSoC 2026.