Git with a cup of tea, painless self-hosted git service
Mirror for internal git.with.parts use
https://git.with.parts
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Yarden Shoham
542adf50d5
Fix `organization` field being `null` in `GET /api/v1/teams/{id}` (#24694)
Enabled the organization loading flag.
- Fixes #20399
# Before
```json
{
...
"description": "",
"organization": null,
"includes_all_repositories": true,
"permission": "owner",
...
}
```
# After
```json
{
...
"description": "",
"organization": {
"id": 2,
"name": "bigorg",
"full_name": "",
"avatar_url": "https://3000-yardenshoham-gitea-3gfrlc9gn4h.ws-us96b.gitpod.io/avatars/e2649b0c016d9102664a7d4349503eb9",
"description": "",
"website": "",
"location": "",
"visibility": "public",
"repo_admin_change_team_access": true,
"username": "bigorg"
},
"includes_all_repositories": true,
"permission": "owner",
...
}
```
Signed-off-by: Yarden Shoham <git@yardenshoham.com>
Co-authored-by: Giteabot <teabot@gitea.io>
|
2 years ago |
.. |
api
|
Fix `organization` field being `null` in `GET /api/v1/teams/{id}` (#24694)
|
2 years ago |
common
|
Make repository response support HTTP range request (#24592)
|
2 years ago |
install
|
Improve template system and panic recovery (#24461)
|
2 years ago |
private
|
Refactor web route (#24080)
|
2 years ago |
utils
|
Implement FSFE REUSE for golang files (#21840)
|
2 years ago |
web
|
Use standard HTTP library to serve files (#24693)
|
2 years ago |
init.go
|
Use globally shared HTMLRender (#24436)
|
2 years ago |