summaryrefslogtreecommitdiffstats
path: root/web/react/utils
diff options
context:
space:
mode:
author=Corey Hulen <corey@hulen.com>2015-09-24 10:52:32 -0700
committer=Corey Hulen <corey@hulen.com>2015-09-24 10:52:32 -0700
commita374419ad5c5f35174ee6285b4eaa57ef82235bd (patch)
treeb8caa1111422817c97727be10dd06c01ed4c0783 /web/react/utils
parent6c0d094d13e73346234bd5ca52b21323893cbbe5 (diff)
downloadchat-a374419ad5c5f35174ee6285b4eaa57ef82235bd.tar.gz
chat-a374419ad5c5f35174ee6285b4eaa57ef82235bd.tar.bz2
chat-a374419ad5c5f35174ee6285b4eaa57ef82235bd.zip
Removing old valet crud
Diffstat (limited to 'web/react/utils')
-rw-r--r--web/react/utils/client.jsx17
1 files changed, 0 insertions, 17 deletions
diff --git a/web/react/utils/client.jsx b/web/react/utils/client.jsx
index 63924bff2..4effa7307 100644
--- a/web/react/utils/client.jsx
+++ b/web/react/utils/client.jsx
@@ -1042,23 +1042,6 @@ export function getMyTeam(success, error) {
});
}
-export function updateValetFeature(data, success, error) {
- $.ajax({
- url: '/api/v1/teams/update_valet_feature',
- dataType: 'json',
- contentType: 'application/json',
- type: 'POST',
- data: JSON.stringify(data),
- success,
- error: function onError(xhr, status, err) {
- var e = handleError('updateValetFeature', xhr, status, err);
- error(e);
- }
- });
-
- track('api', 'api_teams_update_valet_feature');
-}
-
export function registerOAuthApp(app, success, error) {
$.ajax({
url: '/api/v1/oauth/register',