fix(plugin-workflow-test): fix acl for mock data source (#6116)

This commit is contained in:
Junyi 2025-01-22 09:45:44 +08:00 committed by GitHub
parent dddd4616ca
commit 29f547bc26
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -81,7 +81,7 @@ export async function getApp(options: MockServerOptions = {}): Promise<MockServe
});
await anotherDB.sync();
another.acl.allow('*', '*');
another.acl.allow('*', '*', 'loggedIn');
return app;
}