Include is_staff boolean in in-app feedback

This commit is contained in:
Joseph T. Lyons 2023-02-08 10:14:18 -05:00 committed by GitHub
parent 582f5d0114
commit 37c052f53d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 14 additions and 0 deletions

View file

@ -1324,6 +1324,10 @@ impl Client {
pub fn metrics_id(&self) -> Option<Arc<str>> {
self.telemetry.metrics_id()
}
pub fn is_staff(&self) -> Option<bool> {
self.telemetry.is_staff()
}
}
impl WeakSubscriber {