Skip to content
Open
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 22 additions & 0 deletions content/reference/api/hub/latest.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -927,6 +927,28 @@ paths:
"404":
$ref: "#/components/responses/NotFound"

/v2/repositories/{namespace}/{repository}/groups/{group_id}:
parameters:
- $ref: "#/components/parameters/namespace"
- $ref: "#/components/parameters/repository"
- $ref: "#/components/parameters/group_id"
delete:
summary: Remove a group (Team) from repository access
description: |
Removes a group's access to a repository. The user must be a repository admin to perform this action.
tags:
- repositories
security:
- bearerAuth: []
responses:
"204":
description: No content
"400":
$ref: "#/components/responses/BadRequest"
"403":
$ref: "#/components/responses/Forbidden"
"404":
$ref: "#/components/responses/NotFound"

/v2/orgs/{org_name}/members:
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

something is off with this line when I try to preview:

  • bad indentation of a mapping entry in "https://deploy-preview-22400--docsdocker.netlify.app/reference/api/hub/latest.yaml" (959:3)
  • probably an indention thing

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Okay I think I fixed it. Fingers crossed!

parameters:
Expand Down