Add `pomodoro_channel` guild setting. Add customisable per-timer text channel. Improve `reaction_message` flow. Change algorithm for updating vc name. Add `stage` and `pattern` vc name substitutions.
16 lines
292 B
Python
16 lines
292 B
Python
from data import RowTable
|
|
|
|
|
|
timers = RowTable(
|
|
'timers',
|
|
('channelid', 'guildid',
|
|
'text_channelid',
|
|
'focus_length', 'break_length',
|
|
'inactivity_threshold',
|
|
'last_started',
|
|
'text_channelid',
|
|
'channel_name', 'pretty_name'),
|
|
'channelid',
|
|
cache={}
|
|
)
|