MCPcopy Index your code
hub / github.com/parse-community/parse-server / getUserController

Function getUserController

src/Controllers/index.js:101–107  ·  view source on GitHub ↗
(options: ParseServerOptions)

Source from the content-addressed store, hash-verified

99}
100
101export function getUserController(options: ParseServerOptions): UserController {
102 const { appId, emailAdapter, verifyUserEmails } = options;
103 const emailControllerAdapter = loadAdapter(emailAdapter);
104 return new UserController(emailControllerAdapter, appId, {
105 verifyUserEmails,
106 });
107}
108
109export function getCacheController(options: ParseServerOptions): CacheController {
110 const { appId, cacheAdapter, cacheTTL, cacheMaxSize } = options;

Callers 1

getControllersFunction · 0.85

Calls 1

loadAdapterFunction · 0.90

Tested by

no test coverage detected