diff options
author | Aaron Parecki <aaron@parecki.com> | 2014-12-24 16:44:44 -0800 |
---|---|---|
committer | Aaron Parecki <aaron@parecki.com> | 2014-12-24 16:44:44 -0800 |
commit | 2cd148c792a47fea18d760b723d23569ae52d390 (patch) | |
tree | cbd2d277d7c56be7042fc7765ea7a3c26c4cd1f8 /lib/config.template.php | |
parent | 3f090eeb306dec5041d3c2c3b6baa3434f31802b (diff) |
Support for "likes" and adding "settings" page
* Supports a bookmarklet to create "like" posts.
* Beginning a "settings" page to connect silo profiles for POSSEing likes to twitter, facebook and instagram
Diffstat (limited to 'lib/config.template.php')
-rw-r--r-- | lib/config.template.php | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/lib/config.template.php b/lib/config.template.php index df80efa..dae8968 100644 --- a/lib/config.template.php +++ b/lib/config.template.php @@ -10,5 +10,12 @@ class Config { public static $dbPassword = ''; public static $jwtSecret = 'xxx'; + + public static $fbClientID = ''; + public static $fbClientSecret = ''; + public static $twitterClientID = ''; + public static $twitterClientSecret = ''; + public static $instagramClientID = ''; + public static $instagramClientSecret = ''; } |