adds generalized webhooks, updates settings page, translations, validation

This commit is contained in:
Godfrey M
2023-03-07 15:48:21 -08:00
parent aae178a606
commit 35dd0d8def
8 changed files with 84 additions and 71 deletions
@@ -14,7 +14,7 @@ class AddsWebhookOptionToSettingsTable extends Migration
public function up()
{
Schema::table('settings', function (Blueprint $table) {
$table->string('webhook_selected')->after('slack_botname')->nullable();
$table->string('webhook_selected')->after('slack_botname')->default('Slack');nullable();
$table->renameColumn('slack_botname', 'webhook_botname');
$table->renameColumn('slack_endpoint', 'webhook_endpoint');
$table->renameColumn('slack_channel', 'webhook_channel');