(core) Fix ACL bug with rec.id in formula

Summary:
A regression was causing rec.id in formulas to be flagged as
invalid.

Test Plan: Browser tests.

Reviewers: paulfitz

Reviewed By: paulfitz

Subscribers: paulfitz

Differential Revision: https://phab.getgrist.com/D3882
pull/499/head
George Gevoian 1 year ago
parent b4cc519616
commit 8bedaedab6

@ -507,8 +507,7 @@ export class AccessRules extends Disposable {
// Returns a list of valid colIds for the given table, or undefined if the table isn't valid.
public getValidColIds(tableId: string): string[]|undefined {
return this._aclResources.get(tableId)?.colIds.filter(id =>
!isHiddenCol(id) && id !== 'id').sort();
return this._aclResources.get(tableId)?.colIds.filter(id => !isHiddenCol(id)).sort();
}
// Get rules to use for seeding any new set of table/column rules, e.g. to give owners
@ -1084,7 +1083,7 @@ class ColumnObsRuleSet extends ObsRuleSet {
}
public buildResourceDom(): DomElementArg {
return aclColumnList(this._colIds, this.getValidColIds());
return aclColumnList(this._colIds, this._getValidColIdsList());
}
public getColIdList(): string[] {
@ -1107,6 +1106,10 @@ class ColumnObsRuleSet extends ObsRuleSet {
public hasColumns() {
return true;
}
private _getValidColIdsList(): string[] {
return this.getValidColIds().filter(id => id !== 'id');
}
}
class DefaultObsRuleSet extends ObsRuleSet {

Loading…
Cancel
Save