Files
automatisch/packages/backend/src/apps/dropbox/auth/is-still-verified.ts
2023-04-06 18:59:55 +00:00

10 lines
276 B
TypeScript

import { IGlobalVariable } from '@automatisch/types';
import getCurrentAccount from '../common/get-current-account';
const isStillVerified = async ($: IGlobalVariable) => {
const account = await getCurrentAccount($);
return !!account;
};
export default isStillVerified;