mirror of
https://github.com/go-gitea/gitea.git
synced 2025-12-14 21:15:18 +08:00
* Restricted users (#4334): initial implementation
* Add User.IsRestricted & UI to edit it
* Pass user object instead of user id to places where IsRestricted flag matters
* Restricted users: maintain access rows for all referenced repos (incl public)
* Take logged in user & IsRestricted flag into account in org/repo listings, searches and accesses
* Add basic repo access tests for restricted users
Signed-off-by: Manush Dodunekov <manush@stendahls.se>
* Mention restricted users in the faq
Signed-off-by: Manush Dodunekov <manush@stendahls.se>
* Revert unnecessary change `.isUserPartOfOrg` -> `.IsUserPartOfOrg`
Signed-off-by: Manush Dodunekov <manush@stendahls.se>
* Remove unnecessary `org.IsOrganization()` call
Signed-off-by: Manush Dodunekov <manush@stendahls.se>
* Revert to an `int64` keyed `accessMap`
* Add type `userAccess`
* Add convenience func updateUserAccess()
* Turn accessMap into a `map[int64]userAccess`
Signed-off-by: Manush Dodunekov <manush@stendahls.se>
* or even better: `map[int64]*userAccess`
* updateUserAccess(): use tighter syntax as suggested by lafriks
* even tighter
* Avoid extra loop
* Don't disclose limited orgs to unauthenticated users
* Don't assume block only applies to orgs
* Use an array of `VisibleType` for filtering
* fix yet another thinko
* Ok - no need for u
* Revert "Ok - no need for u"
This reverts commit
|
||
|---|---|---|
| .. | ||
| access_token.yml | ||
| access.yml | ||
| action.yml | ||
| attachment.yml | ||
| collaboration.yml | ||
| comment.yml | ||
| commit_status.yml | ||
| deleted_branch.yml | ||
| deploy_key.yml | ||
| email_address.yml | ||
| follow.yml | ||
| gpg_key_import.yml | ||
| gpg_key.yml | ||
| hook_task.yml | ||
| issue_assignees.yml | ||
| issue_label.yml | ||
| issue_user.yml | ||
| issue_watch.yml | ||
| issue.yml | ||
| label.yml | ||
| login_source.yml | ||
| milestone.yml | ||
| notice.yml | ||
| notification.yml | ||
| oauth2_application.yml | ||
| oauth2_authorization_code.yml | ||
| oauth2_grant.yml | ||
| org_user.yml | ||
| protected_branch.yml | ||
| public_key.yml | ||
| pull_request.yml | ||
| reaction.yml | ||
| release.yml | ||
| repo_indexer_status.yml | ||
| repo_redirect.yml | ||
| repo_topic.yml | ||
| repo_unit.yml | ||
| repository.yml | ||
| review.yml | ||
| star.yml | ||
| stopwatch.yml | ||
| team_repo.yml | ||
| team_unit.yml | ||
| team_user.yml | ||
| team.yml | ||
| topic.yml | ||
| tracked_time.yml | ||
| two_factor.yml | ||
| u2f_registration.yml | ||
| user_open_id.yml | ||
| user.yml | ||
| watch.yml | ||
| webhook.yml | ||