Skip to content

Commit

Permalink
Fix proto typo (digital-asset#16913)
Browse files Browse the repository at this point in the history
Breaks-protobuf: true
  • Loading branch information
pbatko-da authored May 25, 2023
1 parent 434badc commit b1a0a1d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ service PartyManagementService {
rpc UpdatePartyDetails (UpdatePartyDetailsRequest) returns (UpdatePartyDetailsResponse);

// Update the assignment of a party from one IDP to another.
rpc UpdateUserIdentityProviderId (UpdatePartyIdentityProviderRequest) returns (UpdatePartyIdentityProviderResponse);
rpc UpdatePartyIdentityProviderId (UpdatePartyIdentityProviderRequest) returns (UpdatePartyIdentityProviderResponse);
}

// Required authorization: ``HasRight(ParticipantAdmin)``
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ private[daml] final class PartyManagementServiceAuthorization(

override def close(): Unit = service.close()

override def updateUserIdentityProviderId(
override def updatePartyIdentityProviderId(
request: UpdatePartyIdentityProviderRequest
): Future[UpdatePartyIdentityProviderResponse] = throw new UnsupportedOperationException()
}

0 comments on commit b1a0a1d

Please sign in to comment.