Commit aad745c9 authored by Robert Speicher's avatar Robert Speicher

Resolve app/models/project_feature.rb

parent 384e6728
...@@ -53,15 +53,12 @@ class ProjectFeature < ActiveRecord::Base ...@@ -53,15 +53,12 @@ class ProjectFeature < ActiveRecord::Base
default_value_for :wiki_access_level, value: ENABLED, allows_nil: false default_value_for :wiki_access_level, value: ENABLED, allows_nil: false
default_value_for :repository_access_level, value: ENABLED, allows_nil: false default_value_for :repository_access_level, value: ENABLED, allows_nil: false
<<<<<<< HEAD
after_commit on: :update do after_commit on: :update do
if Gitlab::CurrentSettings.current_application_settings.elasticsearch_indexing? if Gitlab::CurrentSettings.current_application_settings.elasticsearch_indexing?
ElasticIndexerWorker.perform_async(:update, 'Project', project_id) ElasticIndexerWorker.perform_async(:update, 'Project', project_id)
end end
end end
=======
>>>>>>> upstream/master
after_create ->(model) { SiteStatistic.track(STATISTICS_ATTRIBUTE) if model.wiki_enabled? } after_create ->(model) { SiteStatistic.track(STATISTICS_ATTRIBUTE) if model.wiki_enabled? }
after_update :update_site_statistics after_update :update_site_statistics
......
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