You've already forked Sonarr
							
							
				mirror of
				https://github.com/Sonarr/Sonarr.git
				synced 2025-10-31 00:07:55 +02:00 
			
		
		
		
	
		
			
				
	
	
		
			21 lines
		
	
	
		
			493 B
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			21 lines
		
	
	
		
			493 B
		
	
	
	
		
			C#
		
	
	
	
	
	
| using System;
 | |
| using System.Collections.Generic;
 | |
| using System.Linq;
 | |
| using Nancy;
 | |
| using NzbDrone.Api.Extensions;
 | |
| 
 | |
| namespace NzbDrone.Api.ProgressMessaging
 | |
| {
 | |
|     public class ProgressMessageModule : NzbDroneRestModule<ProgressMessageResource>
 | |
|     {
 | |
|         public ProgressMessageModule()
 | |
|         {
 | |
|             Get["/"] = x => GetAllMessages();
 | |
|         }
 | |
| 
 | |
|         private Response GetAllMessages()
 | |
|         {
 | |
|             return new List<ProgressMessageResource>().AsResponse();
 | |
|         }
 | |
|     }
 | |
| } |