Skip to content

Commit

Permalink
Allow retrieving user of scope
Browse files Browse the repository at this point in the history
  • Loading branch information
thomaseizinger committed Dec 19, 2024
1 parent 6de0bb6 commit 318ec09
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions sentry-core/src/scope/real.rs
Original file line number Diff line number Diff line change
Expand Up @@ -197,6 +197,11 @@ impl Scope {
self.user = user.map(Arc::new);
}

/// Retrieves the user of the current scope.
pub fn user(&self) -> Option<&User> {
self.user.as_deref()
}

/// Sets a tag to a specific value.
pub fn set_tag<V: ToString>(&mut self, key: &str, value: V) {
Arc::make_mut(&mut self.tags).insert(key.to_string(), value.to_string());
Expand Down

0 comments on commit 318ec09

Please sign in to comment.