mirror of
				https://github.com/redmine/redmine.git
				synced 2025-10-31 02:15:52 +01:00 
			
		
		
		
	
		
			
	
	
		
			24 lines
		
	
	
		
			417 B
		
	
	
	
		
			Ruby
		
	
	
	
	
	
		
		
			
		
	
	
			24 lines
		
	
	
		
			417 B
		
	
	
	
		
			Ruby
		
	
	
	
	
	
|  | module Redmine | ||
|  |   module Scm | ||
|  |     class Base | ||
|  |       class << self | ||
|  | 
 | ||
|  |         def all | ||
|  |           @scms | ||
|  |         end | ||
|  | 
 | ||
|  |         # Add a new SCM adapter and repository | ||
|  |         def add(scm_name) | ||
|  |           @scms ||= [] | ||
|  |           @scms << scm_name | ||
|  |         end | ||
|  | 
 | ||
|  |         # Remove a SCM adapter from Redmine's list of supported scms | ||
|  |         def delete(scm_name) | ||
|  |           @scms.delete(scm_name) | ||
|  |         end | ||
|  |       end | ||
|  |     end | ||
|  |   end | ||
|  | end |