Skip to content

Commit

Permalink
feat: include the PoE mode in the ticket body (#22399)
Browse files Browse the repository at this point in the history
  • Loading branch information
MarconLP authored and timgl committed May 24, 2024
1 parent bc644da commit 79d309f
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions frontend/src/lib/components/Support/supportLogic.ts
Original file line number Diff line number Diff line change
Expand Up @@ -400,6 +400,11 @@ export const supportLogic = kea<supportLogicType>([
'\n' +
getDjangoAdminLink(userLogic.values.user, cloudRegion, teamLogic.values.currentTeamId) +
'\n' +
'PoE mode: ' +
(teamLogic.values.currentTeam?.modifiers?.personsOnEventsMode ??
teamLogic.values.currentTeam?.default_modifiers?.personsOnEventsMode ??
'disabled') +
'\n' +
(target_area === 'billing' || target_area === 'login' || target_area === 'onboarding'
? getBillingAdminLink(userLogic.values.user) + '\n'
: '') +
Expand Down

0 comments on commit 79d309f

Please sign in to comment.