diff --git a/common/proto/accounting.proto b/common/proto/accounting.proto index 5ad5851..1404b62 100644 --- a/common/proto/accounting.proto +++ b/common/proto/accounting.proto @@ -43,6 +43,9 @@ message CreateJournalRequest { message GetJournalRequest { string profile_name = 1; int64 journal_id = 2; + + // False by default. True is reserved for a future Casbin permission granted + // only to superadmin and is rejected until that permission is implemented. bool include_deleted = 3; } diff --git a/common/src/proto/descriptor.bin b/common/src/proto/descriptor.bin index dc71e2f..0a33136 100644 Binary files a/common/src/proto/descriptor.bin and b/common/src/proto/descriptor.bin differ diff --git a/common/src/proto/komp_ac.accounting.rs b/common/src/proto/komp_ac.accounting.rs index e83e445..eeb9c44 100644 --- a/common/src/proto/komp_ac.accounting.rs +++ b/common/src/proto/komp_ac.accounting.rs @@ -14,6 +14,8 @@ pub struct GetJournalRequest { pub profile_name: ::prost::alloc::string::String, #[prost(int64, tag = "2")] pub journal_id: i64, + /// False by default. True is reserved for a future Casbin permission granted + /// only to superadmin and is rejected until that permission is implemented. #[prost(bool, tag = "3")] pub include_deleted: bool, } diff --git a/server b/server index 058f722..cf30823 160000 --- a/server +++ b/server @@ -1 +1 @@ -Subproject commit 058f7228adca047bbd23562a5c155a4d360d7671 +Subproject commit cf308231191a434c833d4625a29260c7b9d3cb00