feat: add TipoEvento entity and related functionality
- Introduced TipoEvento entity with enum for event types. - Created DTOs for creating and updating TipoEvento. - Implemented TipoEvento service with methods for CRUD operations and seeding initial data. - Added TipoEvento controller for handling HTTP requests related to event types. - Integrated TipoEvento into the main application module. - Updated Evento entity to include a relationship with TipoEvento. - Enhanced ParticipanteEvento service to register attendance using QR tokens. - Implemented QR token generation and validation for event attendance. - Updated API documentation for new endpoints and functionalities. - Adjusted TypeOrm configuration to include new entities.
This commit is contained in:
@@ -0,0 +1,14 @@
|
||||
INSERT INTO tipo_evento (tipo_evento) VALUES
|
||||
('Académico'),
|
||||
('Taller / Capacitación'),
|
||||
('Conferencia / Charla'),
|
||||
('Panel / Mesa redonda'),
|
||||
('Feria / Expo'),
|
||||
('Networking / Vinculación'),
|
||||
('Entrevista / Sesión 1:1'),
|
||||
('Cultural / Artístico'),
|
||||
('Deportivo / Recreativo'),
|
||||
('Institucional / Ceremonial'),
|
||||
('Social / Comunitario'),
|
||||
('Aniversario'),
|
||||
('Otro');
|
||||
Reference in New Issue
Block a user