chore/use awareness#7471
Conversation
max-nextcloud
commented
Jul 20, 2025
- chore(move): useDelayedFlag to composables
- enh(status): use awareness state instead of sessions
- fix(css): render cursor color for logged in users
- fix(people): hide local client for guests
Codecov Report❌ Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## main #7471 +/- ##
==========================================
+ Coverage 59.76% 60.08% +0.32%
==========================================
Files 494 495 +1
Lines 37702 37713 +11
Branches 1089 1087 -2
==========================================
+ Hits 22531 22659 +128
+ Misses 15065 14948 -117
Partials 106 106 ☔ View full report in Codecov by Sentry. 🚀 New features to boost your workflow:
|
Signed-off-by: Max <max@nextcloud.com>
Signed-off-by: Max <max@nextcloud.com>
Css rule from notifications app was setting ```css box-sizing: content-box; ``` Signed-off-by: Max <max@nextcloud.com>
Signed-off-by: Max <max@nextcloud.com>
Signed-off-by: Max <max@nextcloud.com>
6cbe5c1 to
32eff67
Compare
|
It's not possible to fully rely on the awareness state - in particular as it is not authorized by the server. So it would be possible to impersonate other users etc. I looked into various options of authorizing the information in the awareness state - but most of them result in duplicating information as we need some authorative source to check against. So let's just keep the sessions as the single point of truth with respect to who is editing the content. |