use one constants file

This commit is contained in:
peaklabs-dev
2024-11-12 15:18:48 +01:00
parent 442b0e837c
commit 1c5ddab30d
29 changed files with 30 additions and 30 deletions

View File

@@ -147,7 +147,7 @@ class OtherController extends Controller
public function feedback(Request $request)
{
$content = $request->input('content');
$webhook_url = config('coolify.feedback_discord_webhook');
$webhook_url = config('constants.webhooks.feedback_discord_webhook');
if ($webhook_url) {
Http::post($webhook_url, [
'content' => $content,