feat: implement bulk assets, tags, upload service, and notification p…#720
Merged
yusuftomilola merged 2 commits intoApr 26, 2026
Merged
Conversation
…references Implements all four backend features for BE-41 through BE-44 issues. - BE-42: Bulk asset operations (status, delete, department transfer) - BE-43: Asset tags management and global search with relevance ranking - BE-41: File upload service for images and documents - BE-44: User notification preferences module All endpoints protected by JWT auth with role-based access control. Asset operations log history entries per affected asset. Search supports full-text matching across asset fields with ranking. Closes DistinctCodes#696 DistinctCodes#697 DistinctCodes#698 DistinctCodes#699
|
@Mkalbani is attempting to deploy a commit to the naijabuz's projects Team on Vercel. A member of the Team first needs to authorize it. |
|
@Mkalbani Great news! 🎉 Based on an automated assessment of this PR, the linked Wave issue(s) no longer count against your application limits. You can now already apply to more issues while waiting for a review of this PR. Keep up the great work! 🚀 |
yusuftomilola
approved these changes
Apr 26, 2026
yusuftomilola
approved these changes
Apr 26, 2026
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.
closes #696
closes #697
closes #698
closes #699
Implementation Details
Files Added
```
backend/contrib/
├── src/
│ ├── app.module.ts
│ ├── main.ts
│ ├── assets/
│ │ ├── asset.entity.ts
│ │ ├── asset-history.entity.ts
│ │ ├── assets.service.ts
│ │ ├── assets.controller.ts
│ │ ├── assets.module.ts
│ │ ├── enums.ts
│ │ └── dto/ (5 DTOs)
│ ├── upload/
│ │ ├── upload.service.ts
│ │ ├── upload.controller.ts
│ │ ├── upload.module.ts
│ ├── notifications/
│ │ ├── notification-preference.entity.ts
│ │ ├── notification-preferences.service.ts
│ │ ├── notification-preferences.controller.ts
│ │ ├── notifications.module.ts
│ │ ├── user-registration.subscriber.ts
│ │ └── dto/
│ ├── auth/
│ │ ├── guards/
│ │ │ ├── jwt-auth.guard.ts
│ │ │ └── roles.guard.ts
│ │ └── decorators/ (roles decorator)
│ └── users/
│ └── user.entity.ts
└── .gitignore
```
Issues Resolved
Changes
BE-42: Bulk Asset Operations
BE-43: Asset Tags & Global Search
BE-41: File Upload Service
BE-44: Notification Preferences
Implementation Details