21 lines
819 B
Lua
21 lines
819 B
Lua
return {
|
|
-- Event Creation
|
|
OnlyAdminCreateEvent = false, -- If true, only admins can create events
|
|
|
|
-- Auto Delete Past Events
|
|
AutoDeletePastEventsMinutes = 15, -- Delete events X minutes after they pass
|
|
AutoDeleteCheckIntervalMinutes = 5, -- Check for deletion every X minutes
|
|
|
|
-- Event Reminders
|
|
EnableReminders = true,
|
|
ReminderMinutesBefore = 5, -- Send reminder X minutes before event starts
|
|
NotifyOnEventStart = true, -- Send notification when event starts
|
|
ReminderCheckIntervalMinutes = 1, -- Check for reminders every X minutes
|
|
|
|
-- Event Status Updates
|
|
StatusUpdateIntervalMinutes = 1, -- Update event status (upcoming→active) every X minutes
|
|
|
|
-- Content Moderation
|
|
EnableBlackWord = true
|
|
}
|