-
Notifications
You must be signed in to change notification settings - Fork 5
Merge Develop in Main #61
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
Merged
Merged
Conversation
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
Added parameter validation on event id and moved event docs to Events/ with new tests
Introduced Image Upload Support for members routes
Made GITHUB related envs optional and validation is skipped for 'test' environments
Cloudinary Integrated on Events with code refactoring , code formatting with prettier , Jsdocs integration and middleware update for multipart form
fix(audit): resolve middleware execution issues and prevent recursion
fix(audit): add a entity check to only check for defined models
…dateProject method
feat(audit): add auditlogs migration files
Image upload support for projects and refactored tag Association
Feat: Fully working event update with additional refactoring to overa…
…ntributors tables
Update Schema
… contributorService
Introduce CRON Job for Contributors Fetching
…oved setup instructions
Update Project Documentation
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 several important updates to the backend, including new database migrations for audit logging and image management, improvements to the documentation and project setup, and enhancements to code style and developer tooling. The changes focus on expanding feature support (audit logs, event images, contributor uniqueness), clarifying contribution guidelines, and streamlining the onboarding process for new developers.
Database schema and migrations:
AuditLogs) and event images (event_images), including foreign key relationships and indexing for efficient querying.contributors.github_usernameand the combination ofproject_contributors.project_idandcontributor_idto prevent duplicate entries.avatar_urlfield to thememberstable and apublic_idfield to theevent_imagestable, while removing thedeleted_atcolumn fromevent_images. [1] [2]Documentation and onboarding improvements:
README.mdwith clearer setup instructions, prerequisites, architecture overview, and migration commands; added a new diagram indocs/Contributor_CRON_Architecture.MDto explain the contributor cron job workflow. [1] [2]CONTRIBUTING.mdto clarify project structure, naming conventions, code style, Prisma migration steps, and method organization within services and controllers. [1] [2] [3] [4] [5]Developer tooling and environment:
.prettierrcfile for consistent code formatting and includedprettierandnode-cronas dependencies inpackage.json. [1] [2] [3].env.exampleto include new environment variables for Cloudinary and GitHub integration.