mirror of
https://git.asonix.dog/ceralor/mastodon.git
synced 2025-10-13 13:54:33 +00:00
12 lines
276 B
Ruby
12 lines
276 B
Ruby
# frozen_string_literal: true
|
|
|
|
class Redis
|
|
module NamespaceExtensions
|
|
def exists?(*args, &block)
|
|
call_with_namespace('exists?', *args, &block)
|
|
end
|
|
end
|
|
end
|
|
|
|
Redis::Namespace::COMMANDS['exists?'] = [:first]
|
|
Redis::Namespace.prepend(Redis::NamespaceExtensions)
|