Commit ac312e1f authored by Bob Van Landuyt's avatar Bob Van Landuyt

Fix conflicts in `app/services/application_settings/update_service.rb`

parent b37fb190
module ApplicationSettings module ApplicationSettings
class UpdateService < ApplicationSettings::BaseService class UpdateService < ApplicationSettings::BaseService
def execute def execute
<<<<<<< HEAD
# Repository size limit comes as MB from the view # Repository size limit comes as MB from the view
limit = @params.delete(:repository_size_limit) limit = @params.delete(:repository_size_limit)
@application_setting.repository_size_limit = Gitlab::Utils.try_megabytes_to_bytes(limit) if limit @application_setting.repository_size_limit = Gitlab::Utils.try_megabytes_to_bytes(limit) if limit
=======
>>>>>>> upstream/master
update_terms(@params.delete(:terms)) update_terms(@params.delete(:terms))
@application_setting.update(@params) @application_setting.update(@params)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment