Giter Club home page Giter Club logo

Comments (2)

linear avatar linear commented on July 20, 2024

HIG-4747 Send destinations message when destination is created/deleted

from highlight.

greptile-apps avatar greptile-apps commented on July 20, 2024

To send a notification when a new destination is created, follow these steps:

  1. Modify AlertsSetup.tsx:

    • Locate the function handling the creation of a new destination.
    • Add a call to a new function sendDestinationNotification after the destination is created.
  2. Implement sendDestinationNotification in webhook.go:

    func sendDestinationNotification(destination *model.WebhookDestination) error {
        payload := struct {
            Event string
            URL   string
        }{
            Event: "DESTINATION_CREATED",
            URL:   destination.URL,
        }
        body, err := json.Marshal(payload)
        if err != nil {
            return err
        }
        return sendWebhookData(destination, body)
    }
  3. Update sendWebhookData in webhook.go if necessary to handle the new event type.

  4. Ensure payload structures in integrations.go and message_templates.go are compatible with the new notification type.

References

/backend/alerts/integrations/webhook/webhook.go
/backend/alerts/integrations/integrations.go
/backend/alerts/integrations/microsoft-teams/message_templates.go
/frontend/src/pages/Setup/SetupRouter/AlertsSetup.tsx
/backend/private-graph/graph/generated/generated.go

Ask Greptile

from highlight.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.