23 lines
629 B
Python
23 lines
629 B
Python
# flairconfig.py
|
|
# This file defines the list of flair time configs for the bot.
|
|
# Edit this file to customize flair behaviors.
|
|
|
|
flair_times = [
|
|
{
|
|
"flair_text": "Waiting for OP",
|
|
"hours": 48,
|
|
"comment_message": "This post has had the 'Waiting for OP' flair for 48 hours.",
|
|
"lock_post": False,
|
|
"distinguish_sticky": False
|
|
},
|
|
|
|
{
|
|
"flair_text": "Solved",
|
|
"hours": 0.01,
|
|
"comment_message": "This post has had the 'Waiting for OP' flair for 48 hours.",
|
|
"lock_post": False,
|
|
"distinguish_sticky": False
|
|
},
|
|
# Add more configs as needed
|
|
]
|