Sha256: c4b0dc07862be9b6965ee8f8efb3c92b70aa79b8dd9a616adad1b15d1a529e7c
Contents?: true
Size: 515 Bytes
Versions: 14
Compression:
Stored size: 515 Bytes
Contents
# frozen_string_literal: true module JabberAdmin module Commands # List all registered users on the ejabberd vhost. # # @see https://bit.ly/2KhwT6Z class RegisteredUsers # Pass the correct data to the given callable. # # @param callable [Proc, #call] the callable to call # @param host [String] the jabber vhost (eg. +localhost+) def self.call(callable, host:) callable.call('registered_users', check_res_body: false, host: host) end end end end
Version data entries
14 entries across 14 versions & 1 rubygems