Remove extra tracking data from api_channels requests (#2679)

Этот коммит содержится в:
Joram Wilander
2016-04-11 13:42:58 -04:00
коммит произвёл Corey Hulen
родитель 0d85b998ca
Коммит 2c9e184b8c

Просмотреть файл

@@ -770,7 +770,7 @@ export function createChannel(channel, success, error) {
} }
}); });
track('api', 'api_channels_create', channel.type, 'name', channel.name); track('api', 'api_channels_create');
} }
export function createDirectChannel(channel, userId, success, error) { export function createDirectChannel(channel, userId, success, error) {
@@ -787,7 +787,7 @@ export function createDirectChannel(channel, userId, success, error) {
} }
}); });
track('api', 'api_channels_create_direct', channel.type, 'name', channel.name); track('api', 'api_channels_create_direct');
} }
export function updateChannel(channel, success, error) { export function updateChannel(channel, success, error) {