Files
automatisch/packages/backend/src/apps/wordpress/auth/is-still-verified.ts

10 lines
214 B
TypeScript

import { IGlobalVariable } from '@automatisch/types';
const isStillVerified = async ($: IGlobalVariable) => {
await $.http.get('?rest_route=/wp/v2/settings');
return true;
};
export default isStillVerified;