From 047455a888a0d6139a6b98819212b0695db8fe3e Mon Sep 17 00:00:00 2001 From: PARK BYUNG JUN Date: Mon, 8 Aug 2022 07:13:21 +0000 Subject: [PATCH] name is changed --- src/c2se/backend/identity.rs | 2 +- src/c2se/frontend/identity.rs | 2 +- src/models/core/network.rs | 2 +- src/ss/member/identity.rs | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/c2se/backend/identity.rs b/src/c2se/backend/identity.rs index dc8b3e7..5c244f3 100644 --- a/src/c2se/backend/identity.rs +++ b/src/c2se/backend/identity.rs @@ -38,6 +38,6 @@ pub mod signin_response { #[derive(Clone, PartialEq, ::prost::Message)] pub struct Result { #[prost(string, tag = "1")] - pub session_id: ::prost::alloc::string::String, + pub access_token: ::prost::alloc::string::String, } } diff --git a/src/c2se/frontend/identity.rs b/src/c2se/frontend/identity.rs index 3c266dd..1916b17 100644 --- a/src/c2se/frontend/identity.rs +++ b/src/c2se/frontend/identity.rs @@ -38,6 +38,6 @@ pub mod signin_response { #[derive(Clone, PartialEq, ::prost::Message)] pub struct Result { #[prost(string, tag = "1")] - pub session_id: ::prost::alloc::string::String, + pub access_token: ::prost::alloc::string::String, } } diff --git a/src/models/core/network.rs b/src/models/core/network.rs index d8e84b3..5c1cd47 100644 --- a/src/models/core/network.rs +++ b/src/models/core/network.rs @@ -7,5 +7,5 @@ pub struct Client { #[prost(string, optional, tag = "2")] pub site_url: ::core::option::Option<::prost::alloc::string::String>, #[prost(string, optional, tag = "3")] - pub session_id: ::core::option::Option<::prost::alloc::string::String>, + pub access_token: ::core::option::Option<::prost::alloc::string::String>, } diff --git a/src/ss/member/identity.rs b/src/ss/member/identity.rs index 5943b10..f722514 100644 --- a/src/ss/member/identity.rs +++ b/src/ss/member/identity.rs @@ -104,6 +104,6 @@ pub mod signin_response { #[derive(Clone, PartialEq, ::prost::Message)] pub struct Result { #[prost(string, tag = "1")] - pub session_id: ::prost::alloc::string::String, + pub access_token: ::prost::alloc::string::String, } }