feat(removebg): add remove-bg integration (#1406)

* feat(remove-bg): add remove-bg integration

* feat(removebg): update name and icon

* docs(removebg): update name and icon

* docs: add remove.bg in available apps

* docs(removebg): correct path

---------

Co-authored-by: Ali BARIN <ali.barin53@gmail.com>
This commit is contained in:
Mohammed Zaher
2023-11-07 14:52:55 +02:00
committed by GitHub
parent a4a0102679
commit 5db62679fa
11 changed files with 101 additions and 0 deletions

View File

@@ -0,0 +1,12 @@
import { IGlobalVariable } from '@automatisch/types';
const verifyCredentials = async ($: IGlobalVariable) => {
await $.http.get('/account');
await $.auth.set({
screenName: $.auth.data.screenName,
apiKey: $.auth.data.apiKey,
});
};
export default verifyCredentials;