mirror of
https://gh.wpcy.net/https://github.com/discourse/discourse.git
synced 2026-04-30 03:46:52 +08:00
Internal ref - t/169410 Dependent on https://github.com/discourse-org/discourse-login/pull/98
9 lines
212 B
Ruby
9 lines
212 B
Ruby
# frozen_string_literal: true
|
|
|
|
module DiscourseId
|
|
DEFAULT_PROVIDER_URL = "https://id.discourse.com"
|
|
|
|
def self.provider_url
|
|
SiteSetting.discourse_id_provider_url.presence || DEFAULT_PROVIDER_URL
|
|
end
|
|
end
|