Skip to content

Commit

Permalink
fix: saving oauth
Browse files Browse the repository at this point in the history
  • Loading branch information
andrasbacsai committed Dec 13, 2024
1 parent b6ea36f commit e822749
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 3 deletions.
4 changes: 4 additions & 0 deletions app/Livewire/SettingsOauth.php
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,10 @@ private function updateOauthSettings(?string $provider = null)
}
$oauth->save();
$this->dispatch('success', 'OAuth settings for '.$oauth->provider.' updated successfully!');
} else {
foreach (array_values($this->oauth_settings_map) as &$setting) {
$setting->save();
}
}
}

Expand Down
2 changes: 1 addition & 1 deletion config/constants.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

return [
'coolify' => [
'version' => '4.0.0-beta.378',
'version' => '4.0.0-beta.379',
'self_hosted' => env('SELF_HOSTED', true),
'autoupdate' => env('AUTOUPDATE'),
'base_config_path' => env('BASE_CONFIG_PATH', '/data/coolify'),
Expand Down
4 changes: 2 additions & 2 deletions versions.json
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
{
"coolify": {
"v4": {
"version": "4.0.0-beta.378"
"version": "4.0.0-beta.379"
},
"nightly": {
"version": "4.0.0-beta.379"
"version": "4.0.0-beta.380"
},
"helper": {
"version": "1.0.4"
Expand Down

0 comments on commit e822749

Please sign in to comment.