Fetch available remote tables (#4665)

* Build remote table module

* Use transactions

* Export url builder in util

---------

Co-authored-by: Thomas Trompette <thomast@twenty.com>
This commit is contained in:
Thomas Trompette
2024-03-26 15:50:41 +01:00
committed by GitHub
parent fefa37b300
commit 279d99487c
9 changed files with 254 additions and 41 deletions

View File

@ -16,11 +16,11 @@ export const compareHash = async (password: string, passwordHash: string) => {
return bcrypt.compare(password, passwordHash);
};
export const encryptText = async (
export const encryptText = (
textToEncrypt: string,
key: string,
iv: string,
): Promise<string> => {
): string => {
const keyHash = createHash('sha512')
.update(key)
.digest('hex')
@ -35,11 +35,11 @@ export const encryptText = async (
);
};
export const decryptText = async (
export const decryptText = (
textToDecrypt: string,
key: string,
iv: string,
) => {
): string => {
const keyHash = createHash('sha512')
.update(key)
.digest('hex')