Add OAuth module from repository
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful

This commit is contained in:
2024-02-01 15:20:10 +02:00
parent 37db204cab
commit 7b5b15aebc
27 changed files with 474 additions and 2 deletions

0
modules/OAuth/Config/.gitkeep Executable file
View File

13
modules/OAuth/Config/config.php Executable file
View File

@@ -0,0 +1,13 @@
<?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://']
],
];