Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
351 changes: 137 additions & 214 deletions api/auth/auth.pb.go

Large diffs are not rendered by default.

256 changes: 135 additions & 121 deletions api/auth/auth.pb.gw.go

Large diffs are not rendered by default.

5 changes: 5 additions & 0 deletions api/auth/auth.proto
Original file line number Diff line number Diff line change
Expand Up @@ -38,8 +38,13 @@ message ConfirmPublicKeyRequest {
string public_key_id = 1;
}

message RevokePublicKeyRequest {
string public_key_id = 1;
}

service AuthService {
rpc RegisterPublicKey(RegisterPublicKeyRequest) returns (RegisterPublicKeyResponse);
rpc AwaitPublicKeyConfirmation(AwaitPublicKeyConfirmationRequest) returns (google.protobuf.Empty);
rpc ConfirmPublicKey(ConfirmPublicKeyRequest) returns (google.protobuf.Empty);
rpc RevokePublicKey(RevokePublicKeyRequest) returns (google.protobuf.Empty);
}
74 changes: 63 additions & 11 deletions api/auth/auth_grpc.pb.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading