feat: stripe triggers (payout + transaction)

This commit is contained in:
Pierre Maurice Schwang
2022-11-24 23:22:02 +01:00
parent d3a059d759
commit ef27c9348b
11 changed files with 189 additions and 0 deletions

View File

@@ -0,0 +1,9 @@
import { IGlobalVariable } from '@automatisch/types';
import verifyCredentials from "./verify-credentials";
const isStillVerified = async ($: IGlobalVariable) => {
await verifyCredentials($);
return true;
};
export default isStillVerified;