site is modified

This commit is contained in:
병준 박 2022-08-10 01:49:44 +00:00
parent 90d2fb4ae0
commit 56044e8e37
3 changed files with 53 additions and 25 deletions

View File

@ -39,10 +39,16 @@ pub const SUBJECT_CREATE_SITE: &str = const_format::concatcp!(SUBJECT, ".CreateS
pub struct CreateSiteRequest { pub struct CreateSiteRequest {
#[prost(string, tag="1")] #[prost(string, tag="1")]
pub url: ::prost::alloc::string::String, pub url: ::prost::alloc::string::String,
#[prost(bool, tag = "2")] #[prost(string, tag="2")]
pub name: ::prost::alloc::string::String,
#[prost(string, tag="3")]
pub path: ::prost::alloc::string::String,
#[prost(bool, tag="4")]
pub show: bool, pub show: bool,
#[prost(bool, tag = "3")] #[prost(bool, tag="5")]
pub can_use: bool, pub can_use: bool,
#[prost(uint64, tag="6")]
pub expires_at: u64,
} }
#[derive(Clone, PartialEq, ::prost::Message)] #[derive(Clone, PartialEq, ::prost::Message)]
pub struct CreateSiteResponse { pub struct CreateSiteResponse {
@ -70,10 +76,16 @@ pub struct UpdateSiteRequest {
pub id: ::prost::alloc::string::String, pub id: ::prost::alloc::string::String,
#[prost(string, tag="2")] #[prost(string, tag="2")]
pub url: ::prost::alloc::string::String, pub url: ::prost::alloc::string::String,
#[prost(bool, tag = "3")] #[prost(string, tag="3")]
pub name: ::prost::alloc::string::String,
#[prost(string, tag="4")]
pub path: ::prost::alloc::string::String,
#[prost(bool, tag="5")]
pub show: bool, pub show: bool,
#[prost(bool, tag = "4")] #[prost(bool, tag="6")]
pub can_use: bool, pub can_use: bool,
#[prost(uint64, tag="7")]
pub expires_at: u64,
} }
#[derive(Clone, PartialEq, ::prost::Message)] #[derive(Clone, PartialEq, ::prost::Message)]
pub struct UpdateSiteResponse { pub struct UpdateSiteResponse {

View File

@ -4,14 +4,18 @@ pub struct Site {
pub id: ::prost::alloc::string::String, pub id: ::prost::alloc::string::String,
#[prost(string, tag="2")] #[prost(string, tag="2")]
pub url: ::prost::alloc::string::String, pub url: ::prost::alloc::string::String,
#[prost(bool, tag = "3")] #[prost(string, tag="3")]
pub name: ::prost::alloc::string::String,
#[prost(string, tag="4")]
pub path: ::prost::alloc::string::String,
#[prost(bool, tag="5")]
pub show: bool, pub show: bool,
#[prost(bool, tag = "4")] #[prost(bool, tag="6")]
pub can_use: bool, pub can_use: bool,
#[prost(uint64, tag = "5")] #[prost(uint64, tag="7")]
pub expires_at: u64,
#[prost(uint64, tag="8")]
pub created_at: u64, pub created_at: u64,
#[prost(uint64, tag = "6")] #[prost(uint64, tag="9")]
pub updated_at: u64, pub updated_at: u64,
#[prost(uint64, optional, tag = "7")]
pub deleted_at: ::core::option::Option<u64>,
} }

View File

@ -43,10 +43,16 @@ pub struct CreateSiteRequest {
pub client: ::core::option::Option<core::network::Client>, pub client: ::core::option::Option<core::network::Client>,
#[prost(string, tag="2")] #[prost(string, tag="2")]
pub url: ::prost::alloc::string::String, pub url: ::prost::alloc::string::String,
#[prost(bool, tag="3")] #[prost(string, tag="3")]
pub name: ::prost::alloc::string::String,
#[prost(string, tag="4")]
pub path: ::prost::alloc::string::String,
#[prost(bool, tag="5")]
pub show: bool, pub show: bool,
#[prost(bool, tag="4")] #[prost(bool, tag="6")]
pub can_use: bool, pub can_use: bool,
#[prost(uint64, tag="7")]
pub expires_at: u64,
} }
#[derive(Clone, PartialEq, ::prost::Message)] #[derive(Clone, PartialEq, ::prost::Message)]
pub struct CreateSiteResponse { pub struct CreateSiteResponse {
@ -76,10 +82,16 @@ pub struct UpdateSiteRequest {
pub id: ::prost::alloc::string::String, pub id: ::prost::alloc::string::String,
#[prost(string, tag="3")] #[prost(string, tag="3")]
pub url: ::prost::alloc::string::String, pub url: ::prost::alloc::string::String,
#[prost(bool, tag="4")] #[prost(string, tag="4")]
pub name: ::prost::alloc::string::String,
#[prost(string, tag="5")]
pub path: ::prost::alloc::string::String,
#[prost(bool, tag="6")]
pub show: bool, pub show: bool,
#[prost(bool, tag="5")] #[prost(bool, tag="7")]
pub can_use: bool, pub can_use: bool,
#[prost(uint64, tag="8")]
pub expires_at: u64,
} }
#[derive(Clone, PartialEq, ::prost::Message)] #[derive(Clone, PartialEq, ::prost::Message)]
pub struct UpdateSiteResponse { pub struct UpdateSiteResponse {