Skip to content

Commit

Permalink
Added source identifier to waitlist register
Browse files Browse the repository at this point in the history
  • Loading branch information
aviramha committed Oct 26, 2023
1 parent e07e9d2 commit 5265193
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions changelog.d/+source-waitlist.added.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Added source identifier to waitlist register
2 changes: 1 addition & 1 deletion src/waitlist.ts
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ const WAITLIST_CTA_REPEAT = 30;
export async function waitlistRegisterCommand(email?: string, blockPrompt?: boolean): Promise<IWaitlistResult> {
if (email && email.length > 0) {
try {
let response = await axios.postForm(`https://waitlist.metalbear.co/v1/waitlist`, { email });
let response = await axios.postForm(`https://waitlist.metalbear.co/v1/waitlist?source=vscode`, { email });

if (response.status === 200) {
return {
Expand Down

0 comments on commit 5265193

Please sign in to comment.