summaryrefslogtreecommitdiffstats
path: root/web/react/utils
diff options
context:
space:
mode:
authorCorey Hulen <corey@hulen.com>2015-09-24 12:30:18 -0700
committerCorey Hulen <corey@hulen.com>2015-09-24 12:30:18 -0700
commit6a4a73c2d37aa147e0aa2e157ca78ed275ef822b (patch)
treeb961f87c1bd9a2428eaee8b5ebd8c9fd1baf0fcc /web/react/utils
parentcaa157a3774ee86f0e7003ef4debc49bd88cb9f0 (diff)
parent8ad9a88bda0b6dc3f24945efdbe8b3aa4dcc4360 (diff)
downloadchat-6a4a73c2d37aa147e0aa2e157ca78ed275ef822b.tar.gz
chat-6a4a73c2d37aa147e0aa2e157ca78ed275ef822b.tar.bz2
chat-6a4a73c2d37aa147e0aa2e157ca78ed275ef822b.zip
Merge pull request #787 from mattermost/PLT-30
PLT-30 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',