Skip to content

Commit

Permalink
make permissions sendable and syncable
Browse files Browse the repository at this point in the history
  • Loading branch information
Xavrax committed Jun 5, 2024
1 parent dab433d commit 29ab381
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/dx/access/permissions.rs
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ const JOIN: u8 = 0b1000_0000;
/// allowed resources within the provided permissions.
///
/// [`PubNub Access Manager`]: https://www.pubnub.com/docs/general/security/access-control
pub trait Permission {
pub trait Permission: Send + Sync {
/// The name or pattern of the channel name for which permissions were
/// specified.
fn id(&self) -> &String;
Expand Down

0 comments on commit 29ab381

Please sign in to comment.