feat: audit logs (#5866)

Co-authored-by: Dhruwang <dhruwangjariwala18@gmail.com>
Co-authored-by: Matthias Nannt <mail@matthiasnannt.com>
This commit is contained in:
victorvhs017
2025-06-06 02:31:39 +07:00
committed by GitHub
parent ece3d508a2
commit a9946737df
170 changed files with 8474 additions and 4344 deletions
+11
View File
@@ -0,0 +1,11 @@
import { REDIS_URL } from "@/lib/constants";
import Redis from "ioredis";
import { logger } from "@formbricks/logger";
const redis = REDIS_URL ? new Redis(REDIS_URL) : null;
if (!redis) {
logger.info("REDIS_URL is not set");
}
export default redis;