the bola v2 website
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

oauth.php 242B

12345678910111213141516
  1. <?php
  2. return [
  3. 'enabled' => env('STATAMIC_OAUTH_ENABLED', false),
  4. 'providers' => [
  5. // 'github',
  6. ],
  7. 'routes' => [
  8. 'login' => 'oauth/{provider}',
  9. 'callback' => 'oauth/{provider}/callback',
  10. ],
  11. ];