site is modified
This commit is contained in:
		
							parent
							
								
									90d2fb4ae0
								
							
						
					
					
						commit
						56044e8e37
					
				| @ -37,12 +37,18 @@ pub const SUBJECT_CREATE_SITE: &str = const_format::concatcp!(SUBJECT, ".CreateS | |||||||
| /// subject = bet.beteran.c2se.backend.site.CreateSite
 | /// subject = bet.beteran.c2se.backend.site.CreateSite
 | ||||||
| #[derive(Clone, PartialEq, ::prost::Message)] | #[derive(Clone, PartialEq, ::prost::Message)] | ||||||
| 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 { | ||||||
| @ -66,14 +72,20 @@ pub const SUBJECT_UPDATE_SITE: &str = const_format::concatcp!(SUBJECT, ".UpdateS | |||||||
| /// subject = bet.beteran.c2se.backend.site.UpdateSite
 | /// subject = bet.beteran.c2se.backend.site.UpdateSite
 | ||||||
| #[derive(Clone, PartialEq, ::prost::Message)] | #[derive(Clone, PartialEq, ::prost::Message)] | ||||||
| pub struct UpdateSiteRequest { | pub struct UpdateSiteRequest { | ||||||
|   #[prost(string, tag = "1")] |   #[prost(string, tag="1")] | ||||||
|   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 { | ||||||
|  | |||||||
| @ -1,17 +1,21 @@ | |||||||
| #[derive(Clone, PartialEq, ::prost::Message)] | #[derive(Clone, PartialEq, ::prost::Message)] | ||||||
| pub struct Site { | pub struct Site { | ||||||
|   #[prost(string, tag = "1")] |     #[prost(string, tag="1")] | ||||||
|     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>, |  | ||||||
| } | } | ||||||
|  | |||||||
| @ -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 { | ||||||
|  | |||||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user