UNPKG

converse.js

Version:
17 lines (12 loc) 338 B
import { Model } from '@converse/skeletor'; import converse from '../../shared/api/public.js'; const { Strophe } = converse.env; class BlockedEntity extends Model { get idAttribute () { return 'jid'; } getDisplayName () { return Strophe.xmlunescape(this.get('name')); } } export default BlockedEntity;