summaryrefslogtreecommitdiff
path: root/protocols/Teams/src/requests
diff options
context:
space:
mode:
authorGeorge Hazan <george.hazan@gmail.com>2025-05-27 14:54:57 +0300
committerGeorge Hazan <george.hazan@gmail.com>2025-05-27 14:55:01 +0300
commitf86bb06d4f7225f17677d9bd3af8f40f5a0b5b3d (patch)
tree3dceef6426ac1e6b4949cdf6a88ebd2a936af1de /protocols/Teams/src/requests
parent208a98883b8823cac608113f0215d2a232350ada (diff)
Teams: old Skype search site removed
Diffstat (limited to 'protocols/Teams/src/requests')
-rw-r--r--protocols/Teams/src/requests/search.h33
1 files changed, 0 insertions, 33 deletions
diff --git a/protocols/Teams/src/requests/search.h b/protocols/Teams/src/requests/search.h
deleted file mode 100644
index 701b158339..0000000000
--- a/protocols/Teams/src/requests/search.h
+++ /dev/null
@@ -1,33 +0,0 @@
-/*
-Copyright (c) 2015-25 Miranda NG team (https://miranda-ng.org)
-
-This program is free software; you can redistribute it and/or
-modify it under the terms of the GNU General Public License
-as published by the Free Software Foundation version 2
-of the License.
-
-This program is distributed in the hope that it will be useful,
-but WITHOUT ANY WARRANTY; without even the implied warranty of
-MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
-GNU General Public License for more details.
-
-You should have received a copy of the GNU General Public License
-along with this program. If not, see <http://www.gnu.org/licenses/>.
-*/
-
-#ifndef _SKYPE_REQUEST_SEARCH_H_
-#define _SKYPE_REQUEST_SEARCH_H_
-
-struct GetSearchRequest : public AsyncHttpRequest
-{
- GetSearchRequest(const char *string) :
- AsyncHttpRequest(REQUEST_GET, HOST_GRAPH, "/v2.0/search/", &CTeamsProto::OnSearch)
- {
- this << CHAR_PARAM("requestid", Utils_GenerateUUID())
- << CHAR_PARAM("locale", "en-US") << CHAR_PARAM("searchstring", string);
-
- AddHeader("Accept", "application/json");
- }
-};
-
-#endif //_SKYPE_REQUEST_SEARCH_H_