mirror of
https://github.com/lunaisnotaboy/mastodon.git
synced 2024-10-31 20:14:26 +00:00
13 lines
276 B
Ruby
13 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)
|