mirror of
https://github.com/Drop-OSS/drop.git
synced 2025-11-21 04:01:10 +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();
|
|
});
|