Skip to content

Commit

Permalink
improve comment
Browse files Browse the repository at this point in the history
  • Loading branch information
Kleak committed May 16, 2019
1 parent e2aa306 commit 5146708
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions protos/services/authentication_service.proto
Original file line number Diff line number Diff line change
Expand Up @@ -10,15 +10,16 @@ message SigninRequest {
}

service AuthenticationService {
/// In the metadata the client will find the Authorization key with the token
/// in the value
/// In the metadata the client will find the Authorization key with the token
/// in the value
rpc signin(SigninRequest) returns (google.protobuf.Empty);

/// The client must send in the metadata the Authorization key with the token
/// in the value
rpc signout(google.protobuf.Empty) returns (google.protobuf.Empty);

/// If the user is logged return Empty else throw GrpcError.unauthenticated
/// If the user is logged return Empty else throw GrpcError.
///
/// The client must send in the metadata the Authorization key with the token
/// in the value
rpc isLogged(google.protobuf.Empty) returns (google.protobuf.Empty);
Expand Down

0 comments on commit 5146708

Please sign in to comment.