mirror of
https://github.com/gristlabs/grist-core.git
synced 2026-03-02 04:09:24 +00:00
(core) Hiding helper columns used for column transformation
Summary: When a column is transformed, it creates two helper columns whose values are always broadcasted to all clients. Now when there are some ACL rules, we are going to prune those columns from messages sent to other connected clients. Test Plan: Added new tests Reviewers: dsagal, paulfitz Reviewed By: dsagal, paulfitz Subscribers: dsagal Differential Revision: https://phab.getgrist.com/D3728
This commit is contained in:
@@ -31,7 +31,7 @@ export type TableDataAction = ['TableData', string, number[], BulkColValues];
|
||||
export type AddColumn = ['AddColumn', string, string, ColInfo];
|
||||
export type RemoveColumn = ['RemoveColumn', string, string];
|
||||
export type RenameColumn = ['RenameColumn', string, string, string];
|
||||
export type ModifyColumn = ['ModifyColumn', string, string, ColInfo];
|
||||
export type ModifyColumn = ['ModifyColumn', string, string, Partial<ColInfo>];
|
||||
|
||||
export type AddTable = ['AddTable', string, ColInfoWithId[]];
|
||||
export type RemoveTable = ['RemoveTable', string];
|
||||
|
||||
Reference in New Issue
Block a user