mirror of
				https://github.com/jellyfin/jellyfin.git
				synced 2025-10-31 02:27:18 -04:00 
			
		
		
		
	
		
			
				
	
	
		
			32 lines
		
	
	
		
			824 B
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			32 lines
		
	
	
		
			824 B
		
	
	
	
		
			C#
		
	
	
	
	
	
| using MediaBrowser.Common.Security;
 | |
| using System.Threading.Tasks;
 | |
| 
 | |
| namespace MediaBrowser.Server.Implementations.Sync
 | |
| {
 | |
|     public class SyncRegistrationInfo : IRequiresRegistration
 | |
|     {
 | |
|         private readonly ISecurityManager _securityManager;
 | |
| 
 | |
|         public static SyncRegistrationInfo Instance;
 | |
| 
 | |
|         public SyncRegistrationInfo(ISecurityManager securityManager)
 | |
|         {
 | |
|             _securityManager = securityManager;
 | |
|             Instance = this;
 | |
|         }
 | |
| 
 | |
|         private bool _registered;
 | |
|         public bool IsRegistered
 | |
|         {
 | |
|             get { return _registered; }
 | |
|         }
 | |
| 
 | |
|         public async Task LoadRegistrationInfoAsync()
 | |
|         {
 | |
|             var info = await _securityManager.GetRegistrationStatus("sync").ConfigureAwait(false);
 | |
| 
 | |
|             _registered = info.IsValid;
 | |
|         }
 | |
|     }
 | |
| }
 |