-
-
Notifications
You must be signed in to change notification settings - Fork 6k
[2/3] subgroups #35295
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
146
commits into
go-gitea:main
Choose a base branch
from
GamerGirlandCo:feat/subgroups/frontend
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
[2/3] subgroups #35295
GamerGirlandCo
wants to merge
146
commits into
go-gitea:main
from
GamerGirlandCo:feat/subgroups/frontend
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
4a152d4
to
72a5d32
Compare
a6910ae
to
393af89
Compare
e4e54a7
to
e96c94c
Compare
09575ad
to
832a119
Compare
…g CSS value to `Group` struct
…ure group route handlers
- `/{username}/groups/{group_id}` -> show a group's homepage with its repositories - `/{org}/groups/new` -> create a new group in an org - `/{org}/groups/{group_id}` -> show a group in an org - `/{org}/groups/{group_id}/teams` -> show/edit teams with access to a group - `/{org}/groups/{group_id}/teams/{team}/edit` -> edit a team's access to a group - `/{org}/group/{group_id}/settings` -> show/edit a group's settings - `/group/search` -> search for groups with parameters. return matching groups and repos contained within them
…ashboard header, and update dashboard template to show said selection menu
… of flat repo list
8116b93
to
8185cee
Compare
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Labels
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/dependencies
modifies/frontend
modifies/go
Pull requests that update Go code
modifies/migrations
modifies/templates
This PR modifies the template files
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.
related: #1872
this PR adds the following pages to the web router:
/{username}/groups/{group_id}
-> show a group's homepage with its repositories/org/{org}/groups/new
-> create a new group in an org/org/{org}/groups/{group_id}
-> show a group in an org/org/{org}/groups/{group_id}/teams
-> show/edit teams with access to a group/org/{org}/groups/{group_id}/teams/{team}/edit
-> edit a team's access to a group/org/{org}/group/{group_id}/settings
-> show/edit a group's settings/org/{org}/-/search_team_candidates
-> search for teams that can be added to this group/group/search
-> search for groups with parameters. return matching groups and repos contained within themthere are also the following new dashboard URLs, which display their respective dashboards with only the activity within a specific group:
/org/{org}/dasboard/group/{group_id}
-> homepage/org/{org}/issues/group/{group_id}
-> issues/org/{org}/pulls/group/{group_id}
-> pull requests/org/{org}/milestones/group/{group_id}
-> milestonesas well, the following routes with
POST
methods have been added:/{org}/groups/{group_id}/teams/add
-> adds a new team to a group/{org}/groups/{group_id}/teams/{team}/edit
-> updates a team's access to a group/{org}/groups/{group_id}/teams/{team}/remove
-> removes a team's access to a group/{org}/groups/{group_id}/settings
-> updates a group's settings/{org}/groups/{group_id}/settings/avatar
-> updates a group's avatar/{org}/groups/{group_id}/settings/avatar/delete
-> delete a group's avatarthe
DashboardRepoList
vue component has also been reworked to display a reorderable list of groups and repos in a tree-like fashion.Stack generated by Git-Town