28 lines
		
	
	
		
			824 B
		
	
	
	
		
			Ruby
		
	
	
	
			
		
		
	
	
			28 lines
		
	
	
		
			824 B
		
	
	
	
		
			Ruby
		
	
	
	
| # frozen_string_literal: true
 | |
| 
 | |
| class Admin::IntegrationsController < Admin::ApplicationController
 | |
|   include ::Integrations::Actions
 | |
| 
 | |
|   before_action :not_found, unless: -> { instance_level_integrations? }
 | |
| 
 | |
|   feature_category :integrations
 | |
| 
 | |
|   def overrides
 | |
|     respond_to do |format|
 | |
|       format.json do
 | |
|         projects = Project.with_active_integration(integration.class).merge(::Integration.with_custom_settings)
 | |
|         serializer = ::Integrations::ProjectSerializer.new.with_pagination(request, response)
 | |
| 
 | |
|         render json: serializer.represent(projects)
 | |
|       end
 | |
|       format.html { render 'shared/integrations/overrides' }
 | |
|     end
 | |
|   end
 | |
| 
 | |
|   private
 | |
| 
 | |
|   def find_or_initialize_non_project_specific_integration(name)
 | |
|     Integration.find_or_initialize_non_project_specific_integration(name, instance: true)
 | |
|   end
 | |
| end
 |