You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
/quote add will add a quote directly to the DB, but should there also be a /quote suggest?
Also use a setting for this, a bool for if this should be activated or not.
flowchart TB
suggest[quote suggest] -.-> channel[Add to #quote-suggest for approval]
add[quote add] --> rowids[Get row ids from DB]
rowids --> modal[Run modal for quote input]
modal ---> dbhelper[Process in db_helper.py]
dbhelper --> tabulate[tabulate the quote]
tabulate --> confirm[Send added quote to interaction]
confirm --> return[Return quote data as self.quote_out]
return --> db
channel -.-MOD-.-> choice[accept or deny in channel]
choice -.-> dbhelper
Loading
The text was updated successfully, but these errors were encountered:
/quote add
will add a quote directly to the DB, but should there also be a/quote suggest
?Also use a setting for this, a bool for if this should be activated or not.
The text was updated successfully, but these errors were encountered: