Commit 8711dfa6 authored by Lin Jen-Shin's avatar Lin Jen-Shin

Just use the module function

parent 8fb3b039
...@@ -80,7 +80,7 @@ module LicenseHelper ...@@ -80,7 +80,7 @@ module LicenseHelper
return @show_promotions if defined?(@show_promotions) return @show_promotions if defined?(@show_promotions)
@show_promotions = @show_promotions =
if current_application_settings.should_check_namespace_plan? if Gitlab::CurrentSettings.current_application_settings.should_check_namespace_plan?
true true
else else
license = License.current license = License.current
......
class IssueAssignee < ActiveRecord::Base class IssueAssignee < ActiveRecord::Base
extend Gitlab::CurrentSettings
belongs_to :issue belongs_to :issue
belongs_to :assignee, class_name: "User", foreign_key: :user_id belongs_to :assignee, class_name: "User", foreign_key: :user_id
...@@ -9,7 +7,7 @@ class IssueAssignee < ActiveRecord::Base ...@@ -9,7 +7,7 @@ class IssueAssignee < ActiveRecord::Base
# EE-specific # EE-specific
def update_elasticsearch_index def update_elasticsearch_index
if current_application_settings.elasticsearch_indexing? if Gitlab::CurrentSettings.current_application_settings.elasticsearch_indexing?
ElasticIndexerWorker.perform_async( ElasticIndexerWorker.perform_async(
:update, :update,
'Issue', 'Issue',
......
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