2018-11-18 11:00:15 +05:30
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2017-08-17 22:00:37 +05:30
|
|
|
module ApplicationSettings
|
|
|
|
class BaseService < ::BaseService
|
|
|
|
def initialize(application_setting, user, params = {})
|
2021-04-29 21:17:54 +05:30
|
|
|
@application_setting = application_setting
|
|
|
|
@current_user = user
|
|
|
|
@params = params.dup
|
2017-08-17 22:00:37 +05:30
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|