Settings
    Workspace Controls

    Settings

    Manage identity, GitHub connection, notifications, API keys, CLI onboarding, and workspace-level outbound webhooks from one place.

    SETTINGS TABS

    The settings page is organized into six tabs. Navigate between them to manage different aspects of your workspace.

    Profile & Workspace

    Update identity and contact details for your account or organization.

    VERIFYING WEBHOOK SIGNATURES

    When a signing secret is configured, BugDrop adds an X-BugDrop-Signature header to each delivery. Verify it server-side:

    verify.js
    javascript
    constconst crypto = require("crypto");
    functionfunction verify(payload, signature, secret) {
    constconst expected = crypto
    .createHmac("sha256", secret)
    .update(payload, "utf8")
    .digest("hex");
    returnreturn signature === `sha256=${expected}`;
    }