freescout/modules/OAuth/Config/config.php
Erki Aas 7b5b15aebc
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
Add OAuth module from repository
2024-02-01 15:20:10 +02:00

14 lines
354 B
PHP
Executable File

<?php
return [
'name' => 'OAuth',
'options' => [
'active' => ['default' => 'off'],
'client_id' => ['default' => 'freescout'],
'client_secret' => ['default' => ''],
'auth_url' => ['default' => 'https://'],
'token_url' => ['default' => 'https://'],
'user_url' => ['default' => 'https://']
],
];