-
Notifications
You must be signed in to change notification settings - Fork 149
[BACKEND] URL-encode task pagination links when filters are present #466
Copy link
Copy link
Closed
Labels
area:backendBackend API, database, or service workBackend API, database, or service workbeginner friendlySmall scoped task suitable for beginner contributorsSmall scoped task suitable for beginner contributorsgood first issueFriendly starter issue for first-time contributorsFriendly starter issue for first-time contributorslevel:beginner20 pts difficulty label for small beginner-friendly PRs20 pts difficulty label for small beginner-friendly PRspriority:lowNice-to-have issue with low urgencyNice-to-have issue with low urgencytype:bugBug fix work category bonus labelBug fix work category bonus labeltype:testingTesting work category bonus labelTesting work category bonus label
Metadata
Metadata
Assignees
Labels
area:backendBackend API, database, or service workBackend API, database, or service workbeginner friendlySmall scoped task suitable for beginner contributorsSmall scoped task suitable for beginner contributorsgood first issueFriendly starter issue for first-time contributorsFriendly starter issue for first-time contributorslevel:beginner20 pts difficulty label for small beginner-friendly PRs20 pts difficulty label for small beginner-friendly PRspriority:lowNice-to-have issue with low urgencyNice-to-have issue with low urgencytype:bugBug fix work category bonus labelBug fix work category bonus labeltype:testingTesting work category bonus labelTesting work category bonus label
Problem
list_tasks()buildspagination.nextandpagination.previousby manually concatenating query strings. Filter values such asplugin_idandstatusare not URL-encoded.Expected behavior
Pagination links should be generated with
urllib.parse.urlencode()or an equivalent structured API.Acceptance criteria