mirror of
				https://github.com/ae-utbm/sith.git
				synced 2025-11-04 11:03:04 +00:00 
			
		
		
		
	* update_spam_database command to update suspicious domains from an external provider * Add a AntiSpamEmailField that deny emails from suspicious domains * Update documentation
		
			
				
	
	
		
			11 lines
		
	
	
		
			325 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			11 lines
		
	
	
		
			325 B
		
	
	
	
		
			Python
		
	
	
	
	
	
from django.contrib import admin
 | 
						|
 | 
						|
from antispam.models import ToxicDomain
 | 
						|
 | 
						|
 | 
						|
@admin.register(ToxicDomain)
 | 
						|
class ToxicDomainAdmin(admin.ModelAdmin):
 | 
						|
    list_display = ("domain", "is_externally_managed", "created")
 | 
						|
    search_fields = ("domain", "is_externally_managed", "created")
 | 
						|
    list_filter = ("is_externally_managed",)
 |