From 87e7e257d8eb15d6662b104518becfc75ef6db76 Mon Sep 17 00:00:00 2001 From: Nicholas Molnar <65710+neekolas@users.noreply.github.com> Date: Fri, 23 Aug 2024 10:43:15 -0700 Subject: [PATCH] Make some PrivateMessageIn fields public --- openmls/src/framing/private_message_in.rs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/openmls/src/framing/private_message_in.rs b/openmls/src/framing/private_message_in.rs index be46e9410e..052b47dbe5 100644 --- a/openmls/src/framing/private_message_in.rs +++ b/openmls/src/framing/private_message_in.rs @@ -200,17 +200,17 @@ impl PrivateMessageIn { } /// Get the `group_id` in the `PrivateMessage`. - pub(crate) fn group_id(&self) -> &GroupId { + pub fn group_id(&self) -> &GroupId { &self.group_id } /// Get the `epoch` in the `PrivateMessage`. - pub(crate) fn epoch(&self) -> GroupEpoch { + pub fn epoch(&self) -> GroupEpoch { self.epoch } /// Get the `content_type` in the `PrivateMessage`. - pub(crate) fn content_type(&self) -> ContentType { + pub fn content_type(&self) -> ContentType { self.content_type }