mirror of
				https://github.com/zulip/zulip.git
				synced 2025-10-31 20:13:46 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			13 lines
		
	
	
		
			371 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			13 lines
		
	
	
		
			371 B
		
	
	
	
		
			Python
		
	
	
	
	
	
| # -*- coding: utf-8 -*-
 | |
| 
 | |
| # Copyright: (c) 2008, Jarek Zgoda <jarek.zgoda@gmail.com>
 | |
| 
 | |
| __revision__ = '$Id: util.py 3 2008-11-18 07:33:52Z jarek.zgoda $'
 | |
| 
 | |
| from django.conf import settings
 | |
| 
 | |
| def get_status_field(app_label, model_name):
 | |
|     model = '%s.%s' % (app_label, model_name)
 | |
|     mapping = getattr(settings, 'STATUS_FIELDS', {})
 | |
|     return mapping.get(model, 'status')
 |