summaryrefslogtreecommitdiff
path: root/protocols/Teams/src/requests/status.h
diff options
context:
space:
mode:
Diffstat (limited to 'protocols/Teams/src/requests/status.h')
-rw-r--r--protocols/Teams/src/requests/status.h32
1 files changed, 32 insertions, 0 deletions
diff --git a/protocols/Teams/src/requests/status.h b/protocols/Teams/src/requests/status.h
new file mode 100644
index 0000000000..375b32dc25
--- /dev/null
+++ b/protocols/Teams/src/requests/status.h
@@ -0,0 +1,32 @@
+/*
+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_STATUS_H_
+#define _SKYPE_REQUEST_STATUS_H_
+
+struct SetStatusRequest : public AsyncHttpRequest
+{
+ SetStatusRequest(const char *status) :
+ AsyncHttpRequest(REQUEST_PUT, HOST_DEFAULT, "/users/ME/presenceDocs/messagingService", &CTeamsProto::OnStatusChanged)
+ {
+ JSONNode node(JSON_NODE);
+ node << CHAR_PARAM("status", status);
+ m_szParam = node.write().c_str();
+ }
+};
+
+#endif //_SKYPE_REQUEST_STATUS_H_