Skip to content

Commit

Permalink
updated at 2024-01-08T09:20:05-05:00
Browse files Browse the repository at this point in the history
  • Loading branch information
paulfitz committed Jan 8, 2024
1 parent d4648a4 commit 194a710
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core
Submodule core updated 52 files
+3 −4 app/client/components/Comm.ts
+18 −9 app/client/models/DocPageModel.ts
+42 −12 app/common/ACLRuleCollection.ts
+296 −0 app/common/ACLShareRules.ts
+32 −2 app/common/DocListAPI.ts
+2 −0 app/common/GranularAccessClause.ts
+22 −0 app/common/ShareOptions.ts
+33 −6 app/common/gristUrls.ts
+19 −1 app/common/schema.ts
+6 −0 app/gen-server/entity/Document.ts
+48 −0 app/gen-server/entity/Share.ts
+8 −0 app/gen-server/lib/DocApiForwarder.ts
+74 −2 app/gen-server/lib/HomeDBManager.ts
+54 −0 app/gen-server/migration/1701557445716-Shares.ts
+7 −0 app/plugin/CustomSectionAPI.ts
+1 −1 app/plugin/GristAPI.ts
+2 −1 app/plugin/grist-plugin-api.ts
+16 −0 app/server/lib/ActiveDoc.ts
+11 −2 app/server/lib/AppEndpoint.ts
+7 −1 app/server/lib/DocApi.ts
+15 −4 app/server/lib/DocManager.ts
+10 −0 app/server/lib/DocSession.ts
+75 −6 app/server/lib/GranularAccess.ts
+17 −2 app/server/lib/OIDCConfig.ts
+18 −4 app/server/lib/Sharing.ts
+2 −4 app/server/lib/Triggers.ts
+12 −10 app/server/lib/initialDocSql.ts
+1 −1 package.json
+18 −0 sandbox/grist/migrations.py
+8 −0 sandbox/grist/moment.py
+11 −1 sandbox/grist/schema.py
+7 −3 sandbox/grist/test_completion.py
+2 −1 sandbox/grist/test_renames.py
+4 −2 sandbox/grist/test_trigger_formulas.py
+4 −2 sandbox/grist/test_user.py
+2 −1 sandbox/grist/user.py
+2 −1 static/locales/en.client.json
+7 −2 static/locales/es.client.json
+5 −1 static/locales/it.client.json
+5 −1 static/locales/ro.client.json
+7 −2 static/locales/sl.client.json
+ test/fixtures/docs/Covid-19.grist
+ test/fixtures/docs/Favorite_Films_With_Linked_Ref.grist
+ test/fixtures/docs/Hello.grist
+ test/fixtures/docs/Landlord.grist
+ test/fixtures/docs/ManyRefs.grist
+ test/fixtures/docs/SchoolsSample.grist
+ test/fixtures/docs/SelectByRefList.grist
+ test/fixtures/docs/Teams.grist
+ test/fixtures/docs/World.grist
+7 −0 test/gen-server/migrations.ts
+137 −25 test/server/lib/DocApi.ts

0 comments on commit 194a710

Please sign in to comment.