mirror of
https://github.com/gristlabs/grist-core.git
synced 2024-10-27 20:44:07 +00:00
e56b416c7a
This enables code in ext/ to be able to access it (e.g for proxying / interception). Additionally adds getCreate() to enable future refactoring of `const create` away from being a global singleton constant.
7 lines
229 B
TypeScript
7 lines
229 B
TypeScript
import { getCoreLoginSystem } from "app/server/lib/coreLogins";
|
|
import { GristLoginSystem } from "app/server/lib/GristServer";
|
|
|
|
export async function getLoginSystem(): Promise<GristLoginSystem> {
|
|
return getCoreLoginSystem();
|
|
}
|