Skip to content

Commit

Permalink
accounts_created added to auth_onelogin_accounts_created to get correct
Browse files Browse the repository at this point in the history
totals now we moved to OneLogin
  • Loading branch information
nickdavis2001 committed Nov 19, 2024
1 parent c4d70cc commit 6a5098f
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion service-admin/web/templates/stats.page.gohtml
Original file line number Diff line number Diff line change
Expand Up @@ -22,12 +22,14 @@
</tr>
</thead>
<tbody class="govuk-table__body">
{{ $accounts_created := add .account_created_event .auth_onelogin_count_created_event }}
<tr class="govuk-table__row">
<th scope="row" class="govuk-table__header">Accounts created</th>
{{range .Result}}
<td class="govuk-table__cell">{{ printf "%.0f" .account_created_event }}</td>
<td class="govuk-table__cell">{{ printf "%.0f" accounts_created }}</td>
{{end}}
</tr>

<tr class="govuk-table__row">
<th scope="row" class="govuk-table__header">Accounts deleted</th>
{{range .Result}}
Expand Down

0 comments on commit 6a5098f

Please sign in to comment.