summaryrefslogtreecommitdiff
path: root/app/services/application_settings/base_service.rb
diff options
context:
space:
mode:
Diffstat (limited to 'app/services/application_settings/base_service.rb')
-rw-r--r--app/services/application_settings/base_service.rb4
1 files changed, 3 insertions, 1 deletions
diff --git a/app/services/application_settings/base_service.rb b/app/services/application_settings/base_service.rb
index ebe067536ca..0929b30b7e9 100644
--- a/app/services/application_settings/base_service.rb
+++ b/app/services/application_settings/base_service.rb
@@ -3,7 +3,9 @@
module ApplicationSettings
class BaseService < ::BaseService
def initialize(application_setting, user, params = {})
- @application_setting, @current_user, @params = application_setting, user, params.dup
+ @application_setting = application_setting
+ @current_user = user
+ @params = params.dup
end
end
end