feat(monday): add monday integration

This commit is contained in:
Rıdvan Akca
2024-05-03 14:04:57 +02:00
parent 788530be45
commit 2295507a2c
9 changed files with 106 additions and 0 deletions

View File

@@ -0,0 +1,9 @@
const addAuthHeader = ($, requestConfig) => {
if ($.auth.data?.apiToken) {
requestConfig.headers.Authorization = $.auth.data.apiToken;
}
return requestConfig;
};
export default addAuthHeader;