issues
search
ITU-BDSA2024-GROUP30
/
Chirp
The great Chirp repository for Group 30!
Other
1
stars
0
forks
source link
(5.1.b.2) As DEVELOPERS we want TO IMPLEMENT PAGINATION for the PRIVATE TIMELINE to LIMIT USER CHEEPS PER PAGE
#35
Open
JaSNOHo
opened
1 month ago
JaSNOHo
commented
1 month ago
Acceptance Criteria:
Modify the Razor Pages for private timelines to support pagination.
Use a query parameter page in the URL to specify which page of cheeps to return for a user. Example:
A GET request to http://
/Helge?page=2 should return the second page of Helge's private cheeps.
If no page parameter is provided, return the first page by default.
Each page should contain a maximum of 32 cheeps.
Optimize the SQL queries to ensure only the necessary cheeps for the specified page are retrieved from the database.
Acceptance Criteria: