-
-
Notifications
You must be signed in to change notification settings - Fork 6k
[1/3] subgroups #35265
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Draft
GamerGirlandCo
wants to merge
95
commits into
go-gitea:main
Choose a base branch
from
GamerGirlandCo:feat/subgroups/base
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Draft
[1/3] subgroups #35265
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
ca4eb94
to
7d0b19e
Compare
c3de504
to
7e4b218
Compare
It seems reusing |
468974c
to
c328bda
Compare
Draft
f69d50f
to
69d9176
Compare
851d9c7
to
86be8fe
Compare
…f the `/orgs/{org}` route group
… bailing out if both ownerID and parentGroupID are < 1
i think they're caused by group permissions causing more repos to be returned than before
…nto the `builder.Or` cond
add migration for repository table
24457b4
to
7f8cace
Compare
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Labels
🙋 Bounty claim
lgtm/need 2
This PR needs two approvals by maintainers to be considered for merging.
modifies/api
This PR adds API routes or modifies them
modifies/cli
PR changes something on the CLI, i.e. gitea doctor or gitea admin
modifies/go
Pull requests that update Go code
modifies/migrations
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.
this is the first in a series of 3 pull requests to implement subgroups which closes #1872
checklist
GroupID
field toRepository
structGroup
stores a team’s access level to a group
GroupUnit
like a repository unit, but grants or denies access to a specific unit at the group level. will override unit permissions defined on a team
access to these endpoints is governed by
read:organization
andwrite:organization
scopes/org/{org}/groups/new
→ create a new group at the root level of an org/groups/{group_id}
/groups/{group_id}/subgroups
→ get a group's subgroups/groups/{group_id}/repos
→ get a group's repos/groups/{group_id}/new
→ creates a new subgroup inside a group/groups/{group_id}/move
→ moves a group to different group in the same organization, or to the root level ifnewParent
is null or 0/{username}/{reponame}/groups/move
→ moves a repository to a different group within an organization, or to the root level ifnewParent
is null or 0/claim #1872
Stack generated by Git-Town