Skip to content
Snippets Groups Projects

Draft: PoC - Move Controllers and Grape API:API to the WebEngine

Closed Nikola Milojevic requested to merge web_engine into remove-graphql
2 unresolved threads
8 files
+ 314
298
Compare changes
  • Side-by-side
  • Inline
Files
8
+ 5
0
@@ -58,7 +58,12 @@ class Application < Rails::Application
config.generators.templates.push("#{config.root}/generator_templates")
config.paths['draw_routes'] = %w(config/routes/)
if Gitlab.ee?
config.paths['draw_routes'] << 'ee/config/routes/'
ee_paths = config.eager_load_paths.each_with_object([]) do |path, memo|
ee_path = config.root.join('ee', Pathname.new(path).relative_path_from(config.root))
memo << ee_path.to_s
Loading