@tsed/formio
Version:
Formio package for Ts.ED framework
13 lines (10 loc) • 318 B
text/typescript
import {UseAuth} from "@tsed/platform-middlewares";
import {FormioAuthMiddleware} from "../middlewares/FormioAuthMiddleware.js";
/**
* Check if a user is connected by using the Formio Auth middleware
* @decorator
* @formio
*/
export function UseFormioAuth(): Function {
return UseAuth(FormioAuthMiddleware);
}