From 51a2d9e37587a0c0239399b73202750d3c718dcc Mon Sep 17 00:00:00 2001 From: Dietmar Maurer Date: Mon, 13 Sep 2021 13:40:20 +0200 Subject: [PATCH] fix refs in generated docs --- pbs-config/src/acl.rs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/pbs-config/src/acl.rs b/pbs-config/src/acl.rs index 57e88cbc..7a3fe972 100644 --- a/pbs-config/src/acl.rs +++ b/pbs-config/src/acl.rs @@ -175,8 +175,8 @@ pub struct AclTree { /// Node representing ACLs for a certain ACL path. #[derive(Default)] pub struct AclTreeNode { - /// [User](crate::config::user::User) or - /// [Token](crate::config::user::ApiToken) ACLs for this node. + /// [User](pbs_api_types::User) or + /// [Token](pbs_api_types::ApiToken) ACLs for this node. pub users: HashMap>, /// `Group` ACLs for this node (not yet implemented) pub groups: HashMap>, @@ -195,9 +195,9 @@ impl AclTreeNode { } /// Returns applicable [Role] and their propagation status for a given - /// [Authid](crate::api2::types::Authid). + /// [Authid](pbs_api_types::Authid). /// - /// If the `Authid` is a [User](crate::config::user::User) that has no specific `Roles` configured on this node, + /// If the `Authid` is a [User](pbs_api_types::User) that has no specific `Roles` configured on this node, /// applicable `Group` roles will be returned instead. /// /// If `leaf` is `false`, only those roles where the propagate flag in the ACL is set to `true`