summaryrefslogtreecommitdiff
path: root/sleekxmpp/features/feature_preapproval/stanza.py
diff options
context:
space:
mode:
authorLance Stout <lancestout@gmail.com>2012-07-30 19:30:01 -0700
committerLance Stout <lancestout@gmail.com>2012-07-30 19:30:01 -0700
commit8009b0485e1205833af03f914721a7789f88e31c (patch)
tree7d89266cb9870ef5bb16e58a59c73c3a86410080 /sleekxmpp/features/feature_preapproval/stanza.py
parent8742a56b3ed87c2ba6bd67400c1044256dd5578b (diff)
downloadslixmpp-8009b0485e1205833af03f914721a7789f88e31c.tar.gz
slixmpp-8009b0485e1205833af03f914721a7789f88e31c.tar.bz2
slixmpp-8009b0485e1205833af03f914721a7789f88e31c.tar.xz
slixmpp-8009b0485e1205833af03f914721a7789f88e31c.zip
Add stream feature for server support of subscription pre-approvals.
Diffstat (limited to 'sleekxmpp/features/feature_preapproval/stanza.py')
-rw-r--r--sleekxmpp/features/feature_preapproval/stanza.py17
1 files changed, 17 insertions, 0 deletions
diff --git a/sleekxmpp/features/feature_preapproval/stanza.py b/sleekxmpp/features/feature_preapproval/stanza.py
new file mode 100644
index 00000000..4a59bd16
--- /dev/null
+++ b/sleekxmpp/features/feature_preapproval/stanza.py
@@ -0,0 +1,17 @@
+"""
+ SleekXMPP: The Sleek XMPP Library
+ Copyright (C) 2012 Nathanael C. Fritz
+ This file is part of SleekXMPP.
+
+ See the file LICENSE for copying permission.
+"""
+
+from sleekxmpp.xmlstream import ElementBase
+
+
+class PreApproval(ElementBase):
+
+ name = 'sub'
+ namespace = 'urn:xmpp:features:pre-approval'
+ interfaces = set()
+ plugin_attrib = 'preapproval'