Merged
Conversation
Feature/quota summary
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 a new feature to provide an aggregated summary of drive quotas, including total allocated, used, and available quotas, as well as the total number of members. It also includes several supporting changes such as new use case classes, API endpoints, and gateway methods, as well as some minor corrections to naming and documentation.
New Quota Summary Feature
GetQuotasSummaryUseCase, its default implementation, and output record to aggregate and return a summary of quotas across all members (GetQuotasSummaryUseCase,DefaultGetQuotasSummaryUseCase,GetQuotasSummaryOutput). [1] [2] [3]GET admin/members/quotas/summaryto retrieve the quota summary, with corresponding controller and response model (MemberAdminAPI,MemberAdminController,QuotaSummaryResponse). [1] [2] [3]Gateway and Repository Enhancements
MemberGatewayandFileGatewayto support counting members and summing quotas/content sizes, with implementations in the infrastructure layer and JPA repositories. [1] [2] [3] [4] [5] [6] [7]Configuration Updates
MemberUseCaseConfig). [1] [2]Naming Corrections and Consistency
ammounttoamountthroughout the application, including API documentation, DTOs, and persistence entities. [1] [2] [3] [4] [5] [6] [7]API Documentation Improvements
Let me know if you'd like to walk through any part of the new quota summary logic or have questions about the new gateway methods!