File tree Expand file tree Collapse file tree 1 file changed +3
-1
lines changed
unity-chat/PubnubChatUnity/Assets/PubnubChat/Samples~/PubnubChatConfigAsset Expand file tree Collapse file tree 1 file changed +3
-1
lines changed Original file line number Diff line number Diff line change @@ -12,6 +12,7 @@ public class PubnubChatConfigAsset : ScriptableObject
1212 [ field: SerializeField ] public PubnubChatConfig . RateLimitPerChannel RateLimitPerChannel { get ; private set ; }
1313 [ field: SerializeField ] public bool StoreUserActivityTimestamp { get ; private set ; }
1414 [ field: SerializeField ] public int StoreUserActivityInterval { get ; private set ; } = 60000 ;
15+ [ field: SerializeField ] public bool SyncMutedUsers { get ; private set ; } = false ;
1516
1617 public static implicit operator PubnubChatConfig ( PubnubChatConfigAsset asset )
1718 {
@@ -20,7 +21,8 @@ public static implicit operator PubnubChatConfig(PubnubChatConfigAsset asset)
2021 rateLimitFactor : asset . RateLimitFactor ,
2122 rateLimitPerChannel : asset . RateLimitPerChannel ,
2223 storeUserActivityInterval : asset . StoreUserActivityInterval ,
23- storeUserActivityTimestamp : asset . StoreUserActivityTimestamp ) ;
24+ storeUserActivityTimestamp : asset . StoreUserActivityTimestamp ,
25+ syncMutedUsers : asset . SyncMutedUsers ) ;
2426 }
2527 }
2628}
You can’t perform that action at this time.
0 commit comments