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