Merged
Conversation
… steps alongside dockerfile
…owner on Folder class
…ase on application, adds member gateway import and member id validation
Feature/folder owner
Co-authored-by: Matheus Martins Pigatto <MatheusmPigatto@users.noreply.github.com>
Co-authored-by: Matheus Martins Pigatto <MatheusmPigatto@users.noreply.github.com>
…l.yml Co-authored-by: Matheus Martins Pigatto <MatheusmPigatto@users.noreply.github.com>
Co-authored-by: Matheus Martins Pigatto <MatheusmPigatto@users.noreply.github.com>
Co-authored-by: Matheus Martins Pigatto <MatheusmPigatto@users.noreply.github.com>
Feature/dockerfile
…pdate application configuration files
Feature/add actions
fix: fix application configuration files for production and local env…
…cts for error and execution handling Co-authored-by: Artur S <Artituis@users.noreply.github.com>
…f method arguments and signatures Co-authored-by: Artur S <Artituis@users.noreply.github.com>
Co-authored-by: Artur S <Artituis@users.noreply.github.com>
… context records for before and after execution
…cution and error logging
…application-env.yml for improved configuration management
…ation and logging setup
…MethodInterceptorWithContextHandler
…cationContext and PostInvocationContext
…tryLogExecutor, and ThrowableLogExecutor
…ed null safety
Feature/aop
… for proxy support
…aders feat: add forward-headers-strategy configuration to environment files…
feat: add CORS configuration properties to support cross-origin requests
feat: allow OPTIONS requests for CORS and streamline session manageme…
feat: allow OPTIONS requests for all endpoints in security configuration
fix: rename allowedOriginsPatterns to allowedOrigins in CORS configur…
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 various changes to support folder ownership functionality, improve Docker integration, and enhance workflows for building and pushing Docker images. Key updates include adding owner information to folders, creating new Docker-related files, and modifying workflows for automated builds. Below is a breakdown of the most significant changes:
Folder Ownership Functionality:
application/src/main/java/com/callv2/drive/application/folder/create/CreateFolderInput.java: AddedownerIdto theCreateFolderInputrecord to associate folders with specific owners. Updated thefrommethod accordingly.application/src/main/java/com/callv2/drive/application/folder/create/DefaultCreateFolderUseCase.java: IntegratedownerIdvalidation usingMemberGatewayand updated folder creation logic to include ownership details.domain/src/main/java/com/callv2/drive/domain/folder/Folder.java: Addedowneras a new field in theFolderclass and updated constructors to handle ownership data. [1] [2]Docker Integration:
.dockerignore: Added common development and build artifacts to the.dockerignorefile to optimize Docker builds.Dockerfile: Created a multi-stage Dockerfile for building and running the application, including environment setup for storage location.Workflow Enhancements:
.github/workflows/build-and-push-docker-image.yml: Added a reusable workflow for building and pushing Docker images. Includes support for secrets and dynamic image naming..github/workflows/latest.yml,.github/workflows/nightly.yaml,.github/workflows/release.yml: Introduced workflows for pushing Docker images to Docker Hub based on different triggers (e.g.,mainbranch push,developbranch push, release publication). [1] [2] [3]Test Updates for Folder Ownership:
DefaultCreateFileUseCaseTest,DefaultGetFileUseCaseTest,DefaultMoveFolderUseCaseTest, andDefaultGetFolderUseCaseTestto reflect changes in folder creation logic with ownership details. [1] [2] [3] [4]These changes collectively enhance folder management by introducing ownership, streamline Docker-related processes, and improve CI/CD workflows for the project.