Skip to content

Commit 41d632c

Browse files
Merge pull request #7640 from gitbutlerapp/co-branch-13
Add posthog captures back in
2 parents 4f344e4 + 201699e commit 41d632c

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

apps/desktop/src/components/ReviewDetailsModal.svelte

+6
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@
1212
import PrTemplateSection from './PrTemplateSection.svelte';
1313
import ScrollableContainer from '$components/ConfigurableScrollableContainer.svelte';
1414
import { AIService } from '$lib/ai/service';
15+
import { PostHogWrapper } from '$lib/analytics/posthog';
1516
import { writeClipboard } from '$lib/backend/clipboard';
1617
import { BaseBranch } from '$lib/baseBranch/baseBranch';
1718
import { BranchStack } from '$lib/branches/branch';
@@ -79,6 +80,7 @@
7980
const stackPublishingService = getContext(StackPublishingService);
8081
const butRequestDetailsService = getContext(ButRequestDetailsService);
8182
const brToPrService = getContext(BrToPrService);
83+
const posthog = getContext(PostHogWrapper);
8284
8385
const canPublish = stackPublishingService.canPublish;
8486
@@ -193,6 +195,7 @@
193195
// We want to always create the BR, and vice versa.
194196
if ((canPublishBR && $createButlerRequest) || !canPublishPR) {
195197
reviewId = await stackPublishingService.upsertStack(stack.id, currentSeries.name);
198+
posthog.capture('Butler Review Created');
196199
butRequestDetailsService.setDetails(reviewId, prTitle.value, prBody.value);
197200
}
198201
if ((canPublishPR && $createPullRequest) || !canPublishBR) {
@@ -202,6 +205,7 @@
202205
draft: $createDraft,
203206
upstreamBranchName
204207
});
208+
posthog.capture('Pull Request Created');
205209
prNumber = pr?.number;
206210
}
207211
@@ -300,6 +304,8 @@
300304
});
301305
isLoading = false;
302306
307+
posthog.capture('Pull Request Created');
308+
303309
close();
304310
}
305311

0 commit comments

Comments
 (0)