Connected

@if ($integrations->isEmpty()) @else
    @foreach ($integrations as $integration)
  • {{ ucfirst($integration->type) }}
    {{ $integration->secret_ref ? 'Credentials stored (encrypted)' : 'No credentials' }} @if ($integration->last_tested_at) ยท Last tested {{ $integration->last_tested_at->diffForHumans() }} @endif
    @if ($integration->is_active) Disable @endif
  • @endforeach
@endif

Connect a new integration

Credentials are encrypted with AES-256-GCM before they touch the database. Provide a JSON object of the credentials this integration needs (e.g. {"api_key": "..."}).

@if ($saved)
Stored.
@endif @if ($saveError)
{{ $saveError }}
@endif
Store credentials