Conversation
… in TaskCreateDTO
…areaOfContribution
…, fetch, and delete functionalities
…for create, fetch, and delete operations
… retrieving, updating, and deleting posts
…ocialFeedResponseDTO
…ories for social feed module
…ticipationService
fix(auth): username mismatch issue resolved
…usResponseDto.java
|
This file contains hidden or 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
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.




This pull request introduces significant changes to the backend application, focusing on improving security, adding new features, and enhancing the development workflow. Key updates include the addition of environment variables for testing and builds, new dependencies in the
pom.xmlfile, enhanced security configurations, and the introduction of new controllers for authentication and email handling.Development Workflow Enhancements:
.github/workflows/docker-build.yml, enabling better separation of test and production configurations. [1] [2] [3]Dependency Updates:
pom.xmlto include new dependencies such asspring-boot-starter-validation,spring-boot-starter-aop,h2,modelmapper,mockito-core, andjunit-jupiter. These additions support validation, AOP, testing, and in-memory database usage. [1] [2] [3]springdoc-openapi-starter-webmvc-uito version2.7.0and added runtime scope tojjwt-jackson. [1] [2]Security Enhancements:
SecurityConfigto include JWT authentication, OAuth2 login, and stateless session management. New endpoints for user authentication and email verification were added, with role-based access restrictions applied. [1] [2] [3]RoleBasedAccessAspectto enforce role-based access control using AOP.New Features:
AuthControllerto handle signup, login, logout, email verification, and user profile status.EmailControllerto handle sending HTML emails via the public API.Application Configuration:
VoluntrixBackendApplicationto include beans forModelMapperand enable features like JPA repositories, scheduling, and Web MVC.