(core) updates from grist-core

This commit is contained in:
Paul Fitzpatrick
2024-06-11 09:18:23 -04:00
10 changed files with 247 additions and 28 deletions

View File

@@ -118,7 +118,7 @@ const _webSocketsProbe: Probe = {
url,
};
ws.on('open', () => {
ws.send('Just nod if you can hear me.');
ws.send('{"msg": "Just nod if you can hear me."}');
resolve({
status: 'success',
details,

View File

@@ -1123,6 +1123,7 @@ export class FlexServer implements GristServer {
welcomeNewUser
],
formMiddleware: [
this._userIdMiddleware,
forcedLoginMiddleware,
],
forceLogin: this._redirectToLoginUnconditionally,