mirror of
https://github.com/processone/ejabberd.git
synced 2024-11-22 16:20:52 +01:00
2100ea63ca
SVN Revision: 970
19 lines
485 B
Erlang
19 lines
485 B
Erlang
%%%----------------------------------------------------------------------
|
|
%%% File : mod_roster.hrl
|
|
%%% Author : Alexey Shchepin <alexey@sevcom.net>
|
|
%%% Purpose : Roster management
|
|
%%% Created : 5 Mar 2005 by Alexey Shchepin <alexey@sevcom.net>
|
|
%%% Id : $Id$
|
|
%%%----------------------------------------------------------------------
|
|
|
|
-record(roster, {usj,
|
|
us,
|
|
jid,
|
|
name = "",
|
|
subscription = none,
|
|
ask = none,
|
|
groups = [],
|
|
askmessage = [],
|
|
xs = []}).
|
|
|