15 lines
353 B
TypeScript
15 lines
353 B
TypeScript
import env from "@server/env";
|
|
import { Hook, PluginManager } from "@server/utils/PluginManager";
|
|
import config from "../plugin.json";
|
|
import router from "./auth/email";
|
|
|
|
const enabled = !!env.SMTP_HOST || env.isDevelopment;
|
|
|
|
if (enabled) {
|
|
PluginManager.add({
|
|
...config,
|
|
type: Hook.AuthProvider,
|
|
value: { router, id: config.id },
|
|
});
|
|
}
|