@@ -6,21 +6,20 @@ import {
66import { ProgramType , SignupType } from "shared/types/models/programItem" ;
77
88// Event days
9- const friday = "2025-09-05" ;
10- const saturday = "2025-09-06" ;
9+ const friday = "2026-07-24" ;
1110
1211export const eventConfig : EventConfig = {
1312 // Event info
14- eventName : EventName . TRACON ,
15- eventYear : "2025 " ,
13+ eventName : EventName . ROPECON ,
14+ eventYear : "2026 " ,
1615
1716 // Event settings
18- enableRevolvingDoor : false ,
17+ enableRevolvingDoor : true ,
1918 enableOrganizerFeedback : true ,
20- enableTagDropdown : false ,
19+ enableTagDropdown : true ,
2120
2221 requireRegistrationCode : true ,
23- assignmentAlgorithm : AssignmentAlgorithm . RANDOM ,
22+ assignmentAlgorithm : AssignmentAlgorithm . RANDOM_PADG ,
2423 enableGroups : true ,
2524 signupOpen : true , // TODO: Remove this
2625 resultsVisible : true , // TODO: Remove this
@@ -30,21 +29,26 @@ export const eventConfig: EventConfig = {
3029 // ... or remove all upcoming lottery signups
3130 enableRemoveAllUpcomingSignups : true ,
3231
33- programGuideUrl : "https://2025.tracon .fi/opas" ,
32+ programGuideUrl : "https://2025.ropecon .fi/opas" ,
3433
35- activeProgramTypes : [ ProgramType . TABLETOP_RPG , ProgramType . FLEAMARKET ] ,
34+ activeProgramTypes : [
35+ ProgramType . TABLETOP_RPG ,
36+ ProgramType . LARP ,
37+ ProgramType . TOURNAMENT ,
38+ ProgramType . WORKSHOP ,
39+ ProgramType . OTHER ,
40+ ] ,
3641
37- twoPhaseSignupProgramTypes : [ ProgramType . FLEAMARKET ] ,
42+ twoPhaseSignupProgramTypes : [ ProgramType . TABLETOP_RPG , ProgramType . WORKSHOP ] ,
3843
39- // Event start at 15:00 GMT+3 but lottery signups start at 08:00 GMT+3
40- eventStartTime : `${ friday } T05:00:00Z` , // Fri 08:00 GMT+3
44+ eventStartTime : `${ friday } T12:00:00Z` , // Fri 15:00 GMT+3
4145
4246 directSignupWindows : { } ,
4347
44- rollingDirectSignupProgramTypes : [ ProgramType . TABLETOP_RPG ] ,
48+ rollingDirectSignupProgramTypes : [ ] ,
4549 enableRollingDirectSignupPreviousDay : true ,
4650
47- hideParticipantListProgramTypes : [ ProgramType . FLEAMARKET ] ,
51+ hideParticipantListProgramTypes : [ ] ,
4852
4953 // Direct signup open till program item endTime instead of startTime
5054 directSignupOpenToEndProgramTypes : [ ] , // TODO: Remove config
@@ -81,23 +85,10 @@ export const eventConfig: EventConfig = {
8185 phaseGap : 15 , // minutes
8286
8387 // Use fixed time to open all lottery signups for the whole event
84- fixedLotterySignupTime : ` ${ friday } T05:00:00Z` , // Fri 08:00 GMT+3
88+ fixedLotterySignupTime : null ,
8589
8690 // Program items with parentId use startTime configured here
87- startTimesByParentIds : new Map ( [
88- [
89- "kirpputori-perjantai-alkuilta" ,
90- `${ friday } T13:00:00Z` , // Fri 16:00 GMT+3
91- ] ,
92- [
93- "kirpputori-perjantai-loppuilta" ,
94- `${ friday } T16:00:00Z` , // Fri 19:00 GMT+3
95- ] ,
96- [
97- "kirpputori-lauantai" ,
98- `${ saturday } T06:30:00Z` , // Sat 09:30 GMT+3
99- ] ,
100- ] ) ,
91+ startTimesByParentIds : new Map ( [ ] ) ,
10192
10293 defaultSignupType : SignupType . KONSTI ,
10394} ;
0 commit comments