mirror of
https://github.com/makeplane/plane
synced 2024-06-14 14:31:34 +00:00
6f2a38ad66
* fix: sign in and invitation page fixes * fix: project and workspace services track event fix * fix: user onboarding complete track event fix * fix: issue track event fix * fix: partial property , issue comment and mark as done issue track event fix * fix: bulk delete , move to cycle or module and issue label track event fix * fix: state , cycle and module track event fix * fix: pages and block track event fix * fix: integration , estimate , importer , analytics and gpt track event fix * fix: view track event fix * fix: build fix * fix: build fix
38 lines
885 B
TypeScript
38 lines
885 B
TypeScript
import type { NextApiRequest, NextApiResponse } from "next";
|
|
|
|
// jitsu
|
|
import { createClient } from "@jitsu/nextjs";
|
|
import { convertCookieStringToObject } from "lib/cookie";
|
|
|
|
const jitsu = createClient({
|
|
key: process.env.TRACKER_ACCESS_KEY || "",
|
|
tracking_host: "https://t.jitsu.com",
|
|
});
|
|
|
|
export default async function handler(req: NextApiRequest, res: NextApiResponse) {
|
|
const { eventName, user, extra } = req.body;
|
|
|
|
if (!eventName) {
|
|
return res.status(400).json({ message: "Bad request" });
|
|
}
|
|
|
|
if (!user) return res.status(401).json({ message: "Unauthorized" });
|
|
|
|
// TODO: cache user info
|
|
|
|
jitsu
|
|
.id({
|
|
id: user.id,
|
|
email: user.email,
|
|
first_name: user.first_name,
|
|
last_name: user.last_name,
|
|
})
|
|
.then(() => {
|
|
jitsu.track(eventName, {
|
|
...extra,
|
|
});
|
|
});
|
|
|
|
res.status(200).json({ message: "success" });
|
|
}
|