~cytrogen/masto-fe

ref: 4581a528f77b06b417ea06404d7bc2eae5f04e22 masto-fe/app/services/base_service.rb -rw-r--r-- 217 bytes
4581a528 — jsgoldstein Change account search to match by text when opted-in (#25599) 2 years ago
                                                                                
1
2
3
4
5
6
7
8
9
10
11
12
# frozen_string_literal: true

class BaseService
  include ActionView::Helpers::TextHelper
  include ActionView::Helpers::SanitizeHelper

  include RoutingHelper

  def call(*)
    raise NotImplementedError
  end
end