From f246b9c7eb23245200fd8093738fb18533f36e84 Mon Sep 17 00:00:00 2001 From: Samarpan Harit Date: Sat, 14 Sep 2024 15:54:45 +0530 Subject: [PATCH 1/5] Remove dev FF for GET /logs API --- logs/README.md | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/logs/README.md b/logs/README.md index 23300e2e..6894fabe 100644 --- a/logs/README.md +++ b/logs/README.md @@ -90,8 +90,6 @@ Returns all logs according to the provided queries and path/named-route param. Returns all the logs present in the collection. **Query** - - `dev=[boolean]` Optional: `type=` - `CLOUDFLARE_CACHE_PURGED` @@ -126,7 +124,7 @@ rds-session: { "message": "All Logs fetched successfully", "data": ["", "...."], - "next": "/logs?dev=true&size=5&next=", + "next": "/logs?size=5&next=", "prev": null } ``` From 82a4576400495a3da06286bb185b378726e66d50 Mon Sep 17 00:00:00 2001 From: Samarpan Harit Date: Sat, 14 Sep 2024 16:02:48 +0530 Subject: [PATCH 2/5] Remove dev FF for GET /requests API --- requests/README.md | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/requests/README.md b/requests/README.md index 2c9df513..1a3d3c56 100644 --- a/requests/README.md +++ b/requests/README.md @@ -14,13 +14,12 @@ Returns a list of requests with pagination and filtering options. - **Description:** Fetches a list of requests, optionally filtered by various parameters. -- **URL:** `https://api.realdevsquad.com/requests?dev=true` +- **URL:** `https://api.realdevsquad.com/requests` - **Method:** GET - **Query Parameters:** - - `dev`: Required boolean to fetch requests. - `page`: Optional integer to specify the page number. Default is 1. - `size`: Optional integer to specify the number of requests per page. Default is 5. - `requestedBy`: Optional string to filter requests by the requester's username. From 850aabafde3336512b4d0b1262fd4bf67db2b436 Mon Sep 17 00:00:00 2001 From: Samarpan Harit Date: Sat, 14 Sep 2024 16:05:28 +0530 Subject: [PATCH 3/5] Remove dev FF for POST /requests API --- requests/README.md | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/requests/README.md b/requests/README.md index 1a3d3c56..fff256be 100644 --- a/requests/README.md +++ b/requests/README.md @@ -108,11 +108,7 @@ Creates a new request. - **Description:** Creates a new request with the provided details. -- **URL:** `https://api.realdevsquad.com/requests?dev=true` - -- **Query Parameters:** - - - `dev`: Required boolean to create requests in developer mode. +- **URL:** `https://api.realdevsquad.com/requests` - **Method:** POST From f74b585b902a1fc12029257f23d33a17692b811a Mon Sep 17 00:00:00 2001 From: Samarpan Harit Date: Sat, 14 Sep 2024 16:13:13 +0530 Subject: [PATCH 4/5] Remove dev FF for PUT /requests/:id API --- requests/README.md | 4 ---- 1 file changed, 4 deletions(-) diff --git a/requests/README.md b/requests/README.md index fff256be..24ae7a6c 100644 --- a/requests/README.md +++ b/requests/README.md @@ -219,10 +219,6 @@ Updates an existing request with the provided details. - `id`: The unique identifier of the request to be updated. -- **Query Parameters:** - - - `dev`: Required boolean to update requests in developer mode. - - **Headers:** - Content-Type: application/json - **Cookie:** From b55c94e2c4a29ec43b9ae6f8aa189618e0d40cf5 Mon Sep 17 00:00:00 2001 From: Samarpan Harit Date: Sat, 14 Sep 2024 16:14:27 +0530 Subject: [PATCH 5/5] Remove dev FF for GET /tasks API --- tasks/README.md | 1 - 1 file changed, 1 deletion(-) diff --git a/tasks/README.md b/tasks/README.md index 3a08a8c1..ef0709b4 100644 --- a/tasks/README.md +++ b/tasks/README.md @@ -74,7 +74,6 @@ Returns all the tasks - **Params** None - **Query** - - Optional: `dev=[boolean]` (`dev` is passed to get all tasks in the developer mode with features that are flagged) - Optional: `status=[string]` (`status` is a case insenstive string with one of the following values [AVAILABLE, ASSIGNED, COMPLETED, IN_PROGRESS, BLOCKED, SMOKE_TESTING, NEEDS_REVIEW, IN_REVIEW, APPROVED, MERGED, SANITY_CHECK, REGRESSION_CHECK, RELEASED, VERIFIED, DONE, UNASSIGNED] which represents the status of the task) - Optional: `assignee=[string]` (`assignee` can be assignee username in case of single assignee or multiple comma separated values in case of multiple assignee) - Optional: `title=[string]` (`title` can be case sensitive, whole or starting portion of task title)