-
-
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
from
GamerGirlandCo:feat/subgroups/frontend
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
@GiteaBot
GiteaBot
added
the
lgtm/need 2
This PR needs two approvals by maintainers to be considered for merging.
label
Aug 16, 2025
@github-actions
github-actions
bot
added
modifies/api
This PR adds API routes or modifies them
modifies/go
Pull requests that update Go code
modifies/templates
This PR modifies the template files
modifies/dependencies
modifies/frontend
labels
Aug 16, 2025
@GamerGirlandCo
GamerGirlandCo
force-pushed
the
feat/subgroups/frontend
branch
7 times, most recently
from
August 16, 2025 23:46
4a152d4
to
72a5d32
Compare
Draft
21 tasks
@GamerGirlandCo
GamerGirlandCo
force-pushed
the
feat/subgroups/frontend
branch
from
August 17, 2025 20:14
a6910ae
to
393af89
Compare
@GamerGirlandCo
GamerGirlandCo
force-pushed
the
feat/subgroups/frontend
branch
5 times, most recently
from
August 18, 2025 01:58
e4e54a7
to
e96c94c
Compare
@github-actions
github-actions
bot
added
the
modifies/cli
PR changes something on the CLI, i.e. gitea doctor or gitea admin
label
Aug 18, 2025
@GamerGirlandCo
GamerGirlandCo
force-pushed
the
feat/subgroups/frontend
branch
3 times, most recently
from
August 18, 2025 22:17
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
@GamerGirlandCo
GamerGirlandCo
force-pushed
the
feat/subgroups/frontend
branch
from
August 22, 2025 00:09
8116b93
to
8185cee
Compare
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
Uh oh!
There was an error while loading. Please reload this page.
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