+
+ {user.id}
+ |
+
+ {#if user.email }
+ {user.email}
+ {/if}
+ |
+
+ {#if user.UAAIdentity }
+ {user.UAAIdentity.email}
+ {/if}
+ |
+
+ {#if user.OrganizationRoles.length > 0}
+ {
+ user.OrganizationRoles.map((orgRole) => `${orgRole.Organization.name}`).join(', ')
+ }
+ {/if}
+ |
+
+ {#if user.OrganizationRoles.length > 0}
+ {
+ user.OrganizationRoles.map((orgRole) => `${orgRole.Organization.name}: ${orgRole.Role.name}`).join(', ')
+ }
+ {/if}
+ |
+
+ { formatDistanceStrict(new Date(user.createdAt), new Date(), { addSuffix: true, roundingMethod: 'floor' }) }
+ |
+
+ {#if user.signedInAt }
+ { formatDistanceStrict(new Date(user.signedInAt), new Date(), { addSuffix: true, roundingMethod: 'floor' }) }
+ {:else }
+ never
+ {/if }
+ |
+
+