mirror of
				https://gitlab.com/animath/si/plateforme.git
				synced 2025-10-31 23:04:30 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			14 lines
		
	
	
		
			467 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			14 lines
		
	
	
		
			467 B
		
	
	
	
		
			Python
		
	
	
	
	
	
| # Copyright (C) 2020 by Animath
 | |
| # SPDX-License-Identifier: GPL-3.0-or-later
 | |
| 
 | |
| from .views import PaymentViewSet, RegistrationViewSet, VolunteersViewSet
 | |
| 
 | |
| 
 | |
| def register_registration_urls(router, path):
 | |
|     """
 | |
|     Configure router for registration REST API.
 | |
|     """
 | |
|     router.register(path + "/payment", PaymentViewSet)
 | |
|     router.register(path + "/registration", RegistrationViewSet)
 | |
|     router.register(path + "/volunteers", VolunteersViewSet, basename="volunteers")
 |