feat(pdf-monkey): add pdf-monkey integration

This commit is contained in:
Rıdvan Akca
2024-02-22 17:32:38 +03:00
parent d7893d9a32
commit 8bb7b16c0e
10 changed files with 3069 additions and 1 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;