mirror of
https://github.com/Drop-OSS/drop.git
synced 2025-11-20 11:41:14 +10:00
9 lines
204 B
TypeScript
9 lines
204 B
TypeScript
import authManager from "~/server/internal/auth";
|
|
|
|
/**
|
|
* Fetch public authentication provider mechanisms
|
|
*/
|
|
export default defineEventHandler(() => {
|
|
return authManager.getEnabledAuthProviders();
|
|
});
|