1
0
mirror of https://github.com/devcode-it/openstamanager.git synced 2025-06-05 22:09:38 +02:00
This commit is contained in:
MatteoPistorello
2023-02-28 16:45:16 +01:00
2 changed files with 3 additions and 3 deletions

View File

@@ -178,7 +178,7 @@ echo '
'label' => tr('Contenuto'),
'name' => 'body',
'id' => 'body_'.rand(0, 999),
'value' => json_encode($body),
'value' => $body,
]);
echo'

View File

@@ -38,12 +38,12 @@ class Account extends Model
'microsoft' => [
'name' => 'Microsoft',
'class' => Microsoft::class,
'help' => 'https://docs.openstamanager.com/v/2.4.40/configurazioni/configurazione-oauth2#microsoft',
'help' => 'https://docs.openstamanager.com/v/2.4.41/configurazioni/configurazione-oauth2#microsoft',
],
'google' => [
'name' => 'Google',
'class' => Google::class,
'help' => 'https://docs.openstamanager.com/v/2.4.40/configurazioni/configurazione-oauth2#google',
'help' => 'https://docs.openstamanager.com/v/2.4.41/configurazioni/configurazione-oauth2#google',
],
];