mirror of
https://github.com/gristlabs/grist-core.git
synced 2026-03-02 04:09:24 +00:00
(core) make user role available in ActiveDoc methods
Summary: This makes the user's role (owner/editor/viewer) available in ActiveDoc methods. No use of that information is made yet, other than to log it. The bulk of the diff is getting a handle on the various ways the methods can be called, and systematizing it a bit more. In passing, access control is added to broadcasts of document changes, so users who no longer have access to a document do not receive changes if they still have the document open. Test Plan: existing tests pass; test for broadcast access control added Reviewers: dsagal Reviewed By: dsagal Differential Revision: https://phab.getgrist.com/D2599
This commit is contained in:
@@ -275,7 +275,7 @@ export class Sharing {
|
||||
retValues: sandboxActionBundle.retValues,
|
||||
summarize: true,
|
||||
});
|
||||
await this._activeDoc.docClients.broadcastDocMessage(client || null, 'docUserAction', {
|
||||
await this._activeDoc.broadcastDocUpdate(client || null, 'docUserAction', {
|
||||
actionGroup,
|
||||
docActions: getEnvContent(localActionBundle.stored).concat(
|
||||
getEnvContent(localActionBundle.calc))
|
||||
|
||||
Reference in New Issue
Block a user