mirror of
https://framagit.org/tykayn/mastodon.git
synced 2023-08-25 08:33:12 +02: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)
|