<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">from forum.settings import EXT_KEYS_SET
from forum.settings.base import Setting

TWITTER_CONSUMER_KEY = Setting('TWITTER_CONSUMER_KEY', '', EXT_KEYS_SET, dict(
label = "Twitter consumer key",
help_text = """
Get this key at the &lt;a href="http://twitter.com/apps/"&gt;Twitter apps&lt;/a&gt; to enable
authentication in your site through Twitter.
""",
required=False))

TWITTER_CONSUMER_SECRET = Setting('TWITTER_CONSUMER_SECRET', '', EXT_KEYS_SET, dict(
label = "Twitter consumer secret",
help_text = """
This your Twitter consumer secret that you'll get in the same place as the consumer key.
""",
required=False))


</pre></body></html>