gitforge/models/repo
christopher-besch 8770ffc848 feat: granular settings for watched repo units (#10927)
Continuation of #10598
Closes #7254

Implement repo granular watch selection

I adopted a lot of the frontend from #10598 while redoing the entire back-end. I propose this new model:
- Remove the WatchMode enum.
- Add the WatchSelection struct, which represents the granular selection. Notice that there is no `watching` bool. I tried very hard to keep the structure as simple and redundancy-free as possible. Therefore, people not watching a repo at all either don't have a watch record or one with an entirely unselected WatchSelection struct.
- Add the WatchSource enum. It replaces the WatchMode enum and has a single purpose: determine whether a watch was explicitly or automatically initiated.

Notice that replacing this
```go
		And("`watch`.mode<>?", WatchModeDont).
```
with this is correct:
```go
		And(
			builder.Or(
				builder.Eq{"`watch`.watch_selection_issues": true},
				builder.Eq{"`watch`.watch_selection_pull_requests": true},
				builder.Eq{"`watch`.watch_selection_releases": true},
			),
		).
```
That's because there are four modes: dont, none, auto and normal. When `<>` with dont, we look for auto and normal, because there are no records with none. Therefore, the old code looks for records that indicate watching. The code I replaced this with does so, too, just more granular.

Also notice that I've prepared a future `user preset` in a few places. See below for a little more info on that.

## Next PR
I plan to continue working on this. I want to implement a `user preset` option. The user sets that `user preset` in her settings and may use them in any repo.
<details>
- rename account settings to account and notifications
- user preset (always use this preset for newly accessible repos (according to AutoWatchOnChanges and AutoWatchNewRepos))
</details>

## Further PRs
- make api able to granular watch
- move (email) notifications to new notifications tab

Co-authored-by: 0ko <0ko@noreply.codeberg.org>
Co-authored-by: Gusted <postmaster@gusted.xyz>
Co-authored-by: pat-s <patrick.schratz@gmail.com>
Reviewed-on: https://codeberg.org/forgejo/forgejo/pulls/10927
Reviewed-by: Gusted <gusted@noreply.codeberg.org>
2026-07-09 19:51:10 +02:00
..
fixtures/TestFindRepoAttachmentsByUUID chore: add unit test 2026-03-06 11:21:07 -07:00
TestGetUserForkLax
TestGetUserForkLaxWithTwoChoices
TestSearchRepositoryIDsByCondition
archive_download_count.go
archive_download_count_test.go
archiver.go
attachment.go fix: check that attachments belong to correct resource 2026-03-06 11:21:07 -07:00
attachment_test.go chore: add unit test 2026-03-06 11:21:07 -07:00
authz.go refactor: split AuthorizationReducer into a base RepositoryAuthorizationReducer interface 2026-03-01 17:05:53 +01:00
avatar.go feat: serve downsized versions of avatars (#11242) 2026-05-16 12:04:05 +02:00
collaboration.go
collaboration_test.go
following_repo.go
following_repo_test.go
fork.go
fork_test.go
git.go
issue.go
language_stats.go fix: load repo language for converting to api struct (#12737) 2026-05-28 17:00:40 +02:00
language_stats_test.go
main_test.go
mirror.go fix: store pull mirror creds encrypted with keying (#11909) 2026-04-04 13:53:22 +02:00
moderation.go
moderation_test.go
pushmirror.go
pushmirror_test.go
redirect.go
redirect_test.go
release.go fix: set repo_id for migrated attachment (#12357) 2026-05-01 01:24:32 +02:00
release_list.go
release_list_test.go
release_test.go fix: set repo_id for migrated attachment (#12357) 2026-05-01 01:24:32 +02:00
repo.go fix: load repo language for converting to api struct (#12737) 2026-05-28 17:00:40 +02:00
repo_flags.go
repo_flags_test.go
repo_indexer.go
repo_list.go feat: add "Forgejo Actions (Local)" authorized integration UI (#12672) 2026-05-23 16:26:28 +02:00
repo_list_test.go feat: add "Forgejo Actions (Local)" authorized integration UI (#12672) 2026-05-23 16:26:28 +02:00
repo_repository.go
repo_test.go feat: granular settings for watched repo units (#10927) 2026-07-09 19:51:10 +02:00
repo_unit.go chore: upgrade to https://code.forgejo.org/xorm/xorm v1.4.0 (#12639) 2026-05-20 20:20:08 +02:00
repo_unit_test.go
search.go
star.go
star_test.go
topic.go chore: tidy up uploading migration code (#12577) 2026-05-16 11:46:14 +02:00
topic_test.go
update.go
update_test.go
upload.go chore: add modernizer linter (#11936) 2026-04-02 03:29:37 +02:00
user_repo.go feat: granular settings for watched repo units (#10927) 2026-07-09 19:51:10 +02:00
user_repo_test.go
watch.go feat: granular settings for watched repo units (#10927) 2026-07-09 19:51:10 +02:00
watch_test.go feat: granular settings for watched repo units (#10927) 2026-07-09 19:51:10 +02:00
wiki.go
wiki_test.go