Skip to content

Commit

Permalink
feat: add AuthInfo mesage
Browse files Browse the repository at this point in the history
  • Loading branch information
Nitiwat-owen committed Dec 28, 2023
1 parent c4960da commit 30e60be
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions johnjud/auth/auth/v1/auth.proto
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,7 @@ message SignUpResponse {
message SignInRequest {
string email = 1;
string password = 2;
AuthInfo auth_info = 3;
}

message SignInResponse {
Expand All @@ -75,3 +76,9 @@ message SignOutRequest {
message SignOutResponse {
bool isSuccess = 1;
}

message AuthInfo {
string host_name = 1;
string user_agent = 2;
string ip_address = 3;
}

0 comments on commit 30e60be

Please sign in to comment.