summaryrefslogtreecommitdiff
path: root/include/ejabberd_oauth.hrl
diff options
context:
space:
mode:
authorAlexey Shchepin <alexey@process-one.net>2016-07-20 16:55:45 +0300
committerAlexey Shchepin <alexey@process-one.net>2016-07-25 20:08:30 +0300
commit839490b0d9a8cbdcf13f5eb08412fae3c11ffcf6 (patch)
tree826f37a5538f4b71f83d5d6c2c7ff16abe952b30 /include/ejabberd_oauth.hrl
parentExport acl:parse_ip_netmask/1 for mod_rest (ejabberd-contrib#175) (diff)
Add DB backend support for ejabberd_oauth
Diffstat (limited to 'include/ejabberd_oauth.hrl')
-rw-r--r--include/ejabberd_oauth.hrl26
1 files changed, 26 insertions, 0 deletions
diff --git a/include/ejabberd_oauth.hrl b/include/ejabberd_oauth.hrl
new file mode 100644
index 00000000..6b5a9bcc
--- /dev/null
+++ b/include/ejabberd_oauth.hrl
@@ -0,0 +1,26 @@
+%%%----------------------------------------------------------------------
+%%%
+%%% ejabberd, Copyright (C) 2002-2016 ProcessOne
+%%%
+%%% 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; either version 2 of the
+%%% License, or (at your option) any later version.
+%%%
+%%% 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, write to the Free Software Foundation, Inc.,
+%%% 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
+%%%
+%%%----------------------------------------------------------------------
+
+-record(oauth_token, {
+ token = <<"">> :: binary() | '_',
+ us = {<<"">>, <<"">>} :: {binary(), binary()} | '_',
+ scope = [] :: [binary()] | '_',
+ expire :: integer() | '$1'
+ }).