Files
automatisch/packages/backend/src/apps/twilio/auth/verify-credentials.ts
2022-11-07 20:31:52 +01:00

12 lines
279 B
TypeScript

import { IGlobalVariable } from '@automatisch/types';
const verifyCredentials = async ($: IGlobalVariable) => {
await $.http.get('/2010-04-01/Accounts.json?PageSize=1');
await $.auth.set({
screenName: $.auth.data.accountSid,
});
};
export default verifyCredentials;