Commit 27189554 authored by Douwe Maan's avatar Douwe Maan

Fix import pages not working after first load.

parent 606d24ff
......@@ -61,6 +61,7 @@ v 7.9.0 (unreleased)
- Allow smb:// links in Markdown text.
- Filter merge request by title or description at Merge Requests page
- Block user if he/she was blocked in Active Directory
- Fix import pages not working after first load.
v 7.8.4
- Fix issue_tracker_id substitution in custom issue trackers
......
......@@ -92,7 +92,7 @@ module Gitlab
end
def bitbucket_options
OmniAuth::Strategies::Bitbucket.default_options[:client_options]
OmniAuth::Strategies::Bitbucket.default_options[:client_options].dup
end
end
end
......
......@@ -46,7 +46,7 @@ module Gitlab
end
def github_options
OmniAuth::Strategies::GitHub.default_options[:client_options]
OmniAuth::Strategies::GitHub.default_options[:client_options].dup
end
end
end
......
......@@ -71,7 +71,7 @@ module Gitlab
end
def gitlab_options
OmniAuth::Strategies::GitLab.default_options[:client_options]
OmniAuth::Strategies::GitLab.default_options[:client_options].dup
end
end
end
......
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