mirror of
https://github.com/mastodon/mastodon.git
synced 2026-04-30 20:07:23 -05:00
14 lines
239 B
Ruby
14 lines
239 B
Ruby
# frozen_string_literal: true
|
|
|
|
module Elasticsearch
|
|
module ClientExtensions
|
|
def initialize(arguments = {}, &block)
|
|
super
|
|
|
|
@verified = true
|
|
end
|
|
end
|
|
end
|
|
|
|
Elasticsearch::Client.prepend(Elasticsearch::ClientExtensions)
|