Skip to content
This repository has been archived by the owner on Jun 6, 2024. It is now read-only.

Commit

Permalink
fix: compile errors
Browse files Browse the repository at this point in the history
  • Loading branch information
paullatzelsperger committed Jul 21, 2023
1 parent 6ee1ccc commit 5ea4567
Showing 1 changed file with 5 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,11 @@ public Participant copy() {
return copy(builder);
}

@Override
public String stateAsString() {
return ParticipantStatus.from(state).name();
}

public void transitionAuthorizing() {
transition(AUTHORIZING, ONBOARDING_INITIATED);
}
Expand Down

0 comments on commit 5ea4567

Please sign in to comment.