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

@ -37,12 +37,18 @@ pub const SUBJECT_CREATE_SITE: &str = const_format::concatcp!(SUBJECT, ".CreateS
/// subject = bet.beteran.c2se.backend.site.CreateSite
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct CreateSiteRequest {
#[prost(string, tag = "1")]
#[prost(string, tag="1")]
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,
#[prost(bool, tag = "3")]
#[prost(bool, tag="5")]
pub can_use: bool,
#[prost(uint64, tag="6")]
pub expires_at: u64,
}
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct CreateSiteResponse {
@ -66,14 +72,20 @@ pub const SUBJECT_UPDATE_SITE: &str = const_format::concatcp!(SUBJECT, ".UpdateS
/// subject = bet.beteran.c2se.backend.site.UpdateSite
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct UpdateSiteRequest {
#[prost(string, tag = "1")]
#[prost(string, tag="1")]
pub id: ::prost::alloc::string::String,
#[prost(string, tag = "2")]
#[prost(string, tag="2")]
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,
#[prost(bool, tag = "4")]
#[prost(bool, tag="6")]
pub can_use: bool,
#[prost(uint64, tag="7")]
pub expires_at: u64,
}
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct UpdateSiteResponse {

View File

@ -1,17 +1,21 @@
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct Site {
#[prost(string, tag = "1")]
#[prost(string, tag="1")]
pub id: ::prost::alloc::string::String,
#[prost(string, tag = "2")]
#[prost(string, tag="2")]
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,
#[prost(bool, tag = "4")]
#[prost(bool, tag="6")]
pub can_use: bool,
#[prost(uint64, tag = "5")]
#[prost(uint64, tag="7")]
pub expires_at: u64,
#[prost(uint64, tag="8")]
pub created_at: u64,
#[prost(uint64, tag = "6")]
#[prost(uint64, tag="9")]
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>,
#[prost(string, tag="2")]
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,
#[prost(bool, tag="4")]
#[prost(bool, tag="6")]
pub can_use: bool,
#[prost(uint64, tag="7")]
pub expires_at: u64,
}
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct CreateSiteResponse {
@ -76,10 +82,16 @@ pub struct UpdateSiteRequest {
pub id: ::prost::alloc::string::String,
#[prost(string, tag="3")]
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,
#[prost(bool, tag="5")]
#[prost(bool, tag="7")]
pub can_use: bool,
#[prost(uint64, tag="8")]
pub expires_at: u64,
}
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct UpdateSiteResponse {