Skip to content

Commit

Permalink
Merge pull request #4562 from coollabsio/next
Browse files Browse the repository at this point in the history
v4.0.0-beta.379
  • Loading branch information
andrasbacsai authored Dec 13, 2024
2 parents 3b93d17 + e822749 commit aae54e8
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

1 comment on commit aae54e8

@mk3-14159
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I'm redirected from the restart button to this. Any context?

Please sign in to comment.