Skip to content

Commit

Permalink
Include usernames in attestations
Browse files Browse the repository at this point in the history
  • Loading branch information
kristoferlund committed Sep 22, 2023
1 parent 0279ade commit 129165f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions packages/frontend/src/model/eas/types/attestation.type.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
export type Attestation = {
username: string;
period: string;
received_score: string;
given_score: string;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,7 @@ export function CreateAttestationsDialog({
const csvObjects: Attestation[] = [];
for (const attestation of attestationReportData.rows) {
csvObjects.push({
username: attestation.users_username,
period: periodId,
received_score: attestation.total_received_praise_score,
given_score: attestation.total_given_praise_score,
Expand Down

0 comments on commit 129165f

Please sign in to comment.