[PR #947] [MERGED] Add units to team #15669

Closed
opened 2025-11-02 11:51:56 -06:00 by GiteaMirror · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/go-gitea/gitea/pull/947
Author: @lunny
Created: 2/15/2017
Status: Merged
Merged: 5/18/2017
Merged by: @lunny

Base: masterHead: lunny/team_units


📝 Commits (8)

📊 Changes

18 files changed (+322 additions, -69 deletions)

View changed files

📝 cmd/serv.go (+8 -0)
📝 models/fixtures/repo_unit.yml (+8 -0)
📝 models/fixtures/team.yml (+4 -0)
📝 models/migrations/migrations.go (+2 -0)
📝 models/migrations/v31.go (+1 -1)
models/migrations/v32.go (+23 -0)
📝 models/org_team.go (+22 -0)
📝 models/repo.go (+56 -2)
📝 models/repo_unit.go (+8 -0)
📝 models/unit.go (+50 -30)
📝 modules/auth/org.go (+3 -0)
📝 modules/context/repo.go (+31 -0)
📝 options/locale/locale_en-US.ini (+18 -0)
📝 routers/org/teams.go (+4 -0)
📝 routers/repo/http.go (+8 -0)
📝 routers/repo/view.go (+19 -0)
📝 routers/routes/routes.go (+42 -36)
📝 templates/org/team/new.tmpl (+15 -0)

📄 Description

This PR allows you create one team who can only see issues or pull request or wikis.


🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/go-gitea/gitea/pull/947 **Author:** [@lunny](https://github.com/lunny) **Created:** 2/15/2017 **Status:** ✅ Merged **Merged:** 5/18/2017 **Merged by:** [@lunny](https://github.com/lunny) **Base:** `master` ← **Head:** `lunny/team_units` --- ### 📝 Commits (8) - [`6db69dd`](https://github.com/go-gitea/gitea/commit/6db69dd496897c7c4814419e3ecbc8beb0af356d) add units to team - [`7759020`](https://github.com/go-gitea/gitea/commit/775902094bdc16f06ca7394bffd0962166587ce6) fix lint - [`931ded1`](https://github.com/go-gitea/gitea/commit/931ded1c493c376064e242f535b24f37a333af5b) finish team setting backend - [`1ca4810`](https://github.com/go-gitea/gitea/commit/1ca4810a223bb09bbf459d96477d62c8af226cd7) finished permission controll on routes - [`1cbf72b`](https://github.com/go-gitea/gitea/commit/1cbf72bb991f96b60b3a94548239897231ae8109) fix import blank line - [`9827bb5`](https://github.com/go-gitea/gitea/commit/9827bb5ea51a6d959a99f1541176e3ad515a6593) add unit check on ssh/http pull and push and fix test failed - [`90972f1`](https://github.com/go-gitea/gitea/commit/90972f10eb28e9d5fa11799f5180b6a8b7cf0419) fix fixtures data - [`7d29013`](https://github.com/go-gitea/gitea/commit/7d29013e4a84d1589a5f5d977f66cf173505fc76) remove unused code ### 📊 Changes **18 files changed** (+322 additions, -69 deletions) <details> <summary>View changed files</summary> 📝 `cmd/serv.go` (+8 -0) 📝 `models/fixtures/repo_unit.yml` (+8 -0) 📝 `models/fixtures/team.yml` (+4 -0) 📝 `models/migrations/migrations.go` (+2 -0) 📝 `models/migrations/v31.go` (+1 -1) ➕ `models/migrations/v32.go` (+23 -0) 📝 `models/org_team.go` (+22 -0) 📝 `models/repo.go` (+56 -2) 📝 `models/repo_unit.go` (+8 -0) 📝 `models/unit.go` (+50 -30) 📝 `modules/auth/org.go` (+3 -0) 📝 `modules/context/repo.go` (+31 -0) 📝 `options/locale/locale_en-US.ini` (+18 -0) 📝 `routers/org/teams.go` (+4 -0) 📝 `routers/repo/http.go` (+8 -0) 📝 `routers/repo/view.go` (+19 -0) 📝 `routers/routes/routes.go` (+42 -36) 📝 `templates/org/team/new.tmpl` (+15 -0) </details> ### 📄 Description This PR allows you create one team who can only see issues or pull request or wikis. --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
GiteaMirror added the pull-request label 2025-11-02 11:51:56 -06:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: github-starred/gitea#15669