feat(firefly-iii): add firefly iii integration

This commit is contained in:
Rıdvan Akca
2024-05-20 16:49:08 +02:00
parent 5b7b8c934f
commit bc67e9c4c4
13 changed files with 252 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.attributes.email;
};
export default isStillVerified;