Remote project DB + endpoints #1330
Open
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.
Projects
GET /projects: List projects (updated to new repository)POST /projects: Create a project (updated payload)GET /projects/:project_id: Get project details (updated to new repository)PATCH /projects/:project_id: Update a projectDELETE /projects/:project_id: Delete a projectSprints
GET /projects/:project_id/sprints: List sprints for a projectPOST /projects/:project_id/sprints: Create a sprintPATCH /sprints/:sprint_id: Update a sprintDELETE /sprints/:sprint_id: Delete a sprintProject Statuses
GET /projects/:project_id/statuses: List statuses for a projectPOST /projects/:project_id/statuses: Create a statusPATCH /statuses/:status_id: Update a statusDELETE /statuses/:status_id: Delete a statusTags
GET /projects/:project_id/tags: List tags for a projectPOST /projects/:project_id/tags: Create a tagPATCH /tags/:tag_id: Update a tagDELETE /tags/:tag_id: Delete a tagTask Comments
GET /tasks/:task_id/comments: List comments for a taskPOST /tasks/:task_id/comments: Create a commentPATCH /comments/:comment_id: Update a comment (author only)DELETE /comments/:comment_id: Delete a comment (author only)Task Comment Reactions
GET /comments/:comment_id/reactions: List reactions for a commentPOST /comments/:comment_id/reactions: Add a reactionDELETE /reactions/:reaction_id: Remove a reaction (author only)Project Members
GET /projects/:project_id/members: List members of a projectPOST /projects/:project_id/members: Add a member to a project (must be org member)DELETE /projects/:project_id/members/:user_id: Remove a member from a project