-
Notifications
You must be signed in to change notification settings - Fork 54
Department-Wise Book Fetching for Students #80
Copy link
Copy link
Closed
Labels
enhancementNew feature or requestNew feature or requestgssocGirlScript Summer Of CodeGirlScript Summer Of Codegssoc-exthacktoberfesthacktoberfest-acceptedlevel2GirlScript Summer Of Code - 25 pointsGirlScript Summer Of Code - 25 pointsstatus: ready for devYou can asked for this issue to be assigned (if not already assigned)You can asked for this issue to be assigned (if not already assigned)
Metadata
Metadata
Assignees
Labels
enhancementNew feature or requestNew feature or requestgssocGirlScript Summer Of CodeGirlScript Summer Of Codegssoc-exthacktoberfesthacktoberfest-acceptedlevel2GirlScript Summer Of Code - 25 pointsGirlScript Summer Of Code - 25 pointsstatus: ready for devYou can asked for this issue to be assigned (if not already assigned)You can asked for this issue to be assigned (if not already assigned)
Is this feature already requested?
Problem or Missing Functionality
Currently, the library management system does not allow students to filter or retrieve books based on their department. This limits their ability to quickly find relevant resources that pertain to their specific field of study.
Feature Description
The idea is to introduce a "Department" field to the "MembersDto" entity to categorize students by their academic departments.
With this enhancement:
Students will be able to view and filter books relevant to their specific department (e.g., Computer Science students can see CS-related books).
The feature will improve the user experience by providing department-specific recommendations and tailored search results.
Screenshots
No response
Would you like to work on this feature?
Yes
Implementation Plan
Description:
This feature involves adding a new field, department, to the Member entity within the library management system. By associating each student with a specific department, the system can filter and present books that are most relevant to the students' fields of study.
Key Components:
Database Modification:
Update the Member entity to include a department field.
Ensure existing members can be assigned a default or null department where necessary.
Backend Logic:
Modify book retrieval methods to filter books based on the student's department.
Ensure that the system efficiently queries and serves the relevant books.