blob: 0929b30b7e9b114e1ab07398f7a480dac4cc3f51 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
# frozen_string_literal: true
module ApplicationSettings
class BaseService < ::BaseService
def initialize(application_setting, user, params = {})
@application_setting = application_setting
@current_user = user
@params = params.dup
end
end
end
|