8 lines
231 B
Ruby
8 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
|