]> git.openstreetmap.org Git - osqa.git/blob - forum_modules/facebookauth/settings.py
initial import
[osqa.git] / forum_modules / facebookauth / settings.py
1 from forum.settings import EXT_KEYS_SET
2 from forum.settings.base import Setting
3
4 FB_API_KEY = Setting('FB_API_KEY', '', EXT_KEYS_SET, dict(
5 label = "Facebook API key",
6 help_text = """
7 Get this key at the <a href="http://www.facebook.com/developers/">Facebook developers network</a> to enable
8 authentication in your site through facebook.
9 """,
10 required=False))
11
12 FB_APP_SECRET = Setting('FB_APP_SECRET', '', EXT_KEYS_SET, dict(
13 label = "Facebook APP secret",
14 help_text = """
15 This your facebook app secret that you'll get in the same place as the API key.
16 """,
17 required=False))