7 lines
231 B
Ruby
7 lines
231 B
Ruby
module ApplicationSettings
|
|
class BaseService < ::BaseService
|
|
def initialize(application_setting, user, params = {})
|
|
@application_setting, @current_user, @params = application_setting, user, params.dup
|
|
end
|
|
end
|
|
end
|