diff options
Diffstat (limited to 'app/common.php')
-rw-r--r-- | app/common.php | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/app/common.php b/app/common.php index c5fb34e2..d607cf92 100644 --- a/app/common.php +++ b/app/common.php @@ -53,6 +53,11 @@ defined('GOOGLE_AUTH') or define('GOOGLE_AUTH', false); defined('GOOGLE_CLIENT_ID') or define('GOOGLE_CLIENT_ID', ''); defined('GOOGLE_CLIENT_SECRET') or define('GOOGLE_CLIENT_SECRET', ''); +// GitHub authentication +defined('GITHUB_AUTH') or define('GITHUB_AUTH', false); +defined('GITHUB_CLIENT_ID') or define('GITHUB_CLIENT_ID', ''); +defined('GITHUB_CLIENT_SECRET') or define('GITHUB_CLIENT_SECRET', ''); + $loader = new Loader; $loader->execute(); |