From 947769d4999ac1b77e9aee26b2c7cc26ceac70f1 Mon Sep 17 00:00:00 2001 From: kevin Date: Thu, 16 May 2019 22:01:31 +0200 Subject: [PATCH] authentication service spec --- protos/services/authentication_service.proto | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/protos/services/authentication_service.proto b/protos/services/authentication_service.proto index 2933b8f..34cc016 100644 --- a/protos/services/authentication_service.proto +++ b/protos/services/authentication_service.proto @@ -10,5 +10,11 @@ message SigninRequest { } service AuthenticationService { + /// 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); } \ No newline at end of file