Sha256: d1da43707d1508fce37d86d2e24282c241834c60d78b0fdb70c63e0672d90781
Contents?: true
Size: 653 Bytes
Versions: 14
Compression:
Stored size: 653 Bytes
Contents
# frozen_string_literal: true module JabberAdmin module Commands # Ban an account by kicking sessions and set random password. # # @see https://bit.ly/2KW9xVt class BanAccount # Pass the correct data to the given callable. # # @param callable [Proc, #call] the callable to call # @param user [String] user JID wo/ resource (eg. +tom@localhost+) # @param reason [String] the banning reason (eg. +Spamming other users+) def self.call(callable, user:, reason:) uid, host = user.split('@') callable.call('ban_account', user: uid, host: host, reason: reason) end end end end
Version data entries
14 entries across 14 versions & 1 rubygems