Remove TestTelemetry command
This commit is contained in:
parent
af7c2b8b47
commit
0d3486ca82
1 changed files with 4 additions and 17 deletions
|
@ -15,11 +15,9 @@ use async_tungstenite::tungstenite::{
|
||||||
use db::Db;
|
use db::Db;
|
||||||
use futures::{future::LocalBoxFuture, FutureExt, SinkExt, StreamExt, TryStreamExt};
|
use futures::{future::LocalBoxFuture, FutureExt, SinkExt, StreamExt, TryStreamExt};
|
||||||
use gpui::{
|
use gpui::{
|
||||||
actions,
|
actions, serde_json::Value, AnyModelHandle, AnyViewHandle, AnyWeakModelHandle,
|
||||||
serde_json::{json, Value},
|
AnyWeakViewHandle, AppContext, AsyncAppContext, Entity, ModelContext, ModelHandle,
|
||||||
AnyModelHandle, AnyViewHandle, AnyWeakModelHandle, AnyWeakViewHandle, AppContext,
|
MutableAppContext, Task, View, ViewContext, ViewHandle,
|
||||||
AsyncAppContext, Entity, ModelContext, ModelHandle, MutableAppContext, Task, View, ViewContext,
|
|
||||||
ViewHandle,
|
|
||||||
};
|
};
|
||||||
use http::HttpClient;
|
use http::HttpClient;
|
||||||
use lazy_static::lazy_static;
|
use lazy_static::lazy_static;
|
||||||
|
@ -56,7 +54,7 @@ lazy_static! {
|
||||||
|
|
||||||
pub const ZED_SECRET_CLIENT_TOKEN: &str = "618033988749894";
|
pub const ZED_SECRET_CLIENT_TOKEN: &str = "618033988749894";
|
||||||
|
|
||||||
actions!(client, [Authenticate, TestTelemetry]);
|
actions!(client, [Authenticate]);
|
||||||
|
|
||||||
pub fn init(client: Arc<Client>, cx: &mut MutableAppContext) {
|
pub fn init(client: Arc<Client>, cx: &mut MutableAppContext) {
|
||||||
cx.add_global_action({
|
cx.add_global_action({
|
||||||
|
@ -69,17 +67,6 @@ pub fn init(client: Arc<Client>, cx: &mut MutableAppContext) {
|
||||||
.detach();
|
.detach();
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
cx.add_global_action({
|
|
||||||
let client = client.clone();
|
|
||||||
move |_: &TestTelemetry, _| {
|
|
||||||
client.report_event(
|
|
||||||
"test_telemetry",
|
|
||||||
json!({
|
|
||||||
"test_property": "test_value"
|
|
||||||
}),
|
|
||||||
)
|
|
||||||
}
|
|
||||||
});
|
|
||||||
}
|
}
|
||||||
|
|
||||||
pub struct Client {
|
pub struct Client {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue