Skip to content
Snippets Groups Projects

Add support for querying epics with GraphQL

Merged Brett Walker requested to merge 10795-add-epic-tree-BE-epic-graphql-support into master
All threads resolved!
3 files
+ 98
18
Compare changes
  • Side-by-side
  • Inline
Files
3
@@ -15,5 +15,17 @@ def redirect_logged_user
super
end
override :redirect_to_home_page_url?
def redirect_to_home_page_url?
# If a user is not signed-in and tries to access root_path on a Geo
# secondary node, redirects them to the sign-in page. Don't redirect
# to the custom home page URL if one is present. Otherwise, it
# will break the Geo OAuth workflow always redirecting the user to
# the Geo primary node, which prevents access to the secondary node.
return false if ::Gitlab::Geo.secondary?
super
end
end
end
Loading