Skip to content

Commit ab7c570

Browse files
Merge branch 'main' into axon-1530-thinking-block-reopen
2 parents 9ab795c + 72ff75c commit ab7c570

File tree

3 files changed

+15
-13
lines changed

3 files changed

+15
-13
lines changed

package-lock.json

Lines changed: 11 additions & 11 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1858,6 +1858,7 @@
18581858
},
18591859
"express": {
18601860
"body-parser": "^2.2.1"
1861-
}
1861+
},
1862+
"jws": "^4.0.1"
18621863
}
18631864
}

src/analytics.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -300,8 +300,9 @@ export async function searchIssuesEvent(product: Product): Promise<TrackEvent> {
300300
}
301301

302302
export async function issueOpenRovoDevEvent(site: DetailedSiteInfo, source?: string): Promise<TrackEvent> {
303+
const isEntitled = (await Container.rovoDevEntitlementChecker.checkEntitlement()).isEntitled;
303304
return instanceTrackEvent(site, 'openRovoDev', 'issue', {
304-
attributes: { issueSource: source || '' },
305+
attributes: { issueSource: source || '', isEntitled: isEntitled },
305306
});
306307
}
307308

0 commit comments

Comments
 (0)