# frozen_string_literal: true

require "blather"

require_relative "proxied_jid"

Blather::JID.class_eval do
	def onboarding?
		ProxiedJID.new(self).unproxied.domain == CONFIG[:onboarding_domain]
	end
end
