-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[View] Make a request form with Nuxt3 (mega PR) #61
Merged
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Testing pre-commit hook config.
Testing pre-commit hook config.
- Replaced placeholder UI in `NewRequestForm` Vue component with a full-fledged form layout including personal, contact, preferences, and security sections. - Introduced input fields with validation rules for user details such as name, email, address, and preferences like language and currency. - Added dynamic form elements for adding fellow travelers with validations for names and birthdates. - Cleaned up `MakeRequestView` by removing redundant form code and embedding `NewRequestForm`. - Standardized termination of lines with semicolons in `RegistrationVueform`. - Commented out unused icon imports and relocated heroicons import comment to the top in `RegisterView`.
Creating room for apps/ui-nuxt3. After migrating, we'll go back to apps/ui.
Creating room for apps/ui-nuxt3. After migrating, we'll go back to apps/ui.
Currently just for local dev and testing, not running in staging or production. Signed-off-by: delano <delano@cpan.org>
Signed-off-by: delano <delano@cpan.org>
Signed-off-by: delano <delano@cpan.org>
Makes it accessible from other devices.
See note re: next-auth version pinning: https://sidebase.io/nuxt-auth/getting-started/installation#specifics-authjs-provider Signed-off-by: delano <delano@cpan.org>
This reverts commit cb9bfe2.
Signed-off-by: delano <delano@cpan.org>
- Added SuperTokens as the primary authentication service. - Added `supertokens_python` and its dependencies to the requirements. - Commented out Django Rest Framework (DRF) auth-related paths and components, preparing for SuperTokens integration. - Implemented initial SuperTokens configuration in settings, including customizations for CORS headers and allowed origins. - Ensured proper CORS setup to work with SuperTokens. - Updated the README to include the `auth/` directory for future reference. - Removed unused `ready` method from `AfbcoreConfig`. - Intentionally left some sections of code (like certain middleware) unchanged until full integration with SuperTokens is confirmed.
- Replaced SuperTokens with Zitadel as the new authentication server. - Updated documentation links to reflect the new authentication service. - Removed SuperTokens-related settings and initializations from `settings.py`. - Added Docker configuration and a README for the new Zitadel auth service integration. - Improved auth system modularity and maintainability with these updates. Signed-off-by: delano <delano@cpan.org>
[#57] Refactor auth system to use Zitadel
[View] Make a request form
[View] Make a request form with Nuxt3 (mega PR)
delano
modified the milestones:
User testing - Round 1 (Branch managers),
Early testing (with friendlies)
Jan 31, 2024
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Replaced placeholder UI in
NewRequestForm
Vue component with a full-fledged form layout including personal, contact, preferences, and security sections.Introduced input fields with validation rules for user details such as name, email, address, and preferences like language and currency.
Added dynamic form elements for adding fellow travelers with validations for names and birthdates.
Cleaned up
MakeRequestView
by removing redundant form code and embeddingNewRequestForm
.Standardized termination of lines with semicolons in
RegistrationVueform
.Commented out unused icon imports and relocated heroicons import comment to the top in
RegisterView
.