From ffeaad91f37e067c75660432e0caf3a966167f6e Mon Sep 17 00:00:00 2001 From: yggverse Date: Thu, 14 Nov 2024 10:53:30 +0200 Subject: [PATCH] remove pub access from bookmark connection --- src/profile/bookmark/database.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/profile/bookmark/database.rs b/src/profile/bookmark/database.rs index 45b70d4a..89ad6510 100644 --- a/src/profile/bookmark/database.rs +++ b/src/profile/bookmark/database.rs @@ -10,7 +10,7 @@ pub struct Table { } pub struct Database { - pub connection: Rc>, + connection: Rc>, profile_id: i64, // multi-profile relationship @TODO }