feat(clickup): add clickup integration

This commit is contained in:
Rıdvan Akca
2024-02-13 16:43:47 +03:00
committed by Ali BARIN
parent 116bf59b68
commit 26fc63c52c
11 changed files with 214 additions and 0 deletions

View File

@@ -0,0 +1,8 @@
import getCurrentUser from '../common/get-current-user.js';
const isStillVerified = async ($) => {
const currentUser = await getCurrentUser($);
return !!currentUser.id;
};
export default isStillVerified;