gitforge/services
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
..
actions fix: detect schedules after merge if merged branch remains (#13338) 2026-07-07 22:38:41 +02:00
agit
asymkey fix: cleanup data before migration retry (#12370) 2026-05-05 12:41:42 +02:00
attachment
auth chore: add more error output for an invalid JWT key identifier (#12903) 2026-06-02 23:39:51 +02:00
authz feat: enable auth to git LFS via authorized integrations (#12725) 2026-05-28 23:20:58 +02:00
automerge
context feat: granular settings for watched repo units (#10927) 2026-07-09 19:51:10 +02:00
contexttest chore(refactor): add getter/setter to APIContext data members (#13143) 2026-06-27 02:53:45 +02:00
convert chore(refactor): add getter/setter to APIContext data members (#13143) 2026-06-27 02:53:45 +02:00
cron fix: cleanup data before migration retry (#12370) 2026-05-05 12:41:42 +02:00
doctor fix(doctor): ensure the doctor runs with the same settings.AppPath as Forgejo (#12901) 2026-06-06 03:23:06 +02:00
externalaccount
f3
federation federation: protect against SSRF attacks (#11795) 2026-07-08 02:03:17 +02:00
feed
forgejo
forms fix(ui): fall back to default theme from non-existent (#13110) 2026-06-17 19:18:09 +02:00
gitdiff chore: bump golangci-lint version (#13211) 2026-06-27 00:35:03 +02:00
indexer
issue feat: add internal APIs for reactions notifications (#13017) 2026-06-29 03:59:39 +02:00
lfs 2026-06-10 security patches (#13001) 2026-06-10 06:05:01 +02:00
mailer feat: granular settings for watched repo units (#10927) 2026-07-09 19:51:10 +02:00
markup
migrations fix: ensure migrations allow/deny host lists are applied to onedev, pagure, and codebase migrators (#13184) 2026-06-25 14:11:36 +02:00
mirror fix: compliance with [migrations].ALLOWED_DOMAINS, ...BLOCKED_DOMAINS, and ....ALLOW_LOCALNETWORKS for git & LFS ops (#13129) 2026-06-23 23:40:25 +02:00
moderation
notify feat: add internal APIs for reactions notifications (#13017) 2026-06-29 03:59:39 +02:00
org feat: make delete repository transcation READ COMMITTED (#12856) 2026-07-07 21:56:18 +02:00
packages chore: move determinePackageAccessMode from context packages 2026-06-20 06:24:07 +02:00
pull fix: ignore migrated commit without a patch (#13257) 2026-07-03 03:38:52 +02:00
redirect
release
remote
repository feat: granular settings for watched repo units (#10927) 2026-07-09 19:51:10 +02:00
secrets
shared/automerge
stats chore: upgrade to https://code.forgejo.org/xorm/xorm v1.4.0 (#12639) 2026-05-20 20:20:08 +02:00
task fix: cleanup data before migration retry (#12370) 2026-05-05 12:41:42 +02:00
uinotification feat: granular settings for watched repo units (#10927) 2026-07-09 19:51:10 +02:00
user feat: granular settings for watched repo units (#10927) 2026-07-09 19:51:10 +02:00
webhook feat: Update Microsoft Teams webhook to use AdaptiveCard (#11704) 2026-05-26 16:10:55 +02:00
wiki feat: replace repo based server-side hooks with centralised hooks (#10397) 2026-04-27 22:34:46 +02:00