Revision 6f2c0d467f31951eddf0d62df499cf0de5775205 authored by Daniel Underwood on 21 June 2022, 05:34:49 UTC, committed by GitHub on 21 June 2022, 05:34:49 UTC
This change updates the UI to document the correct Group Mention format for Discord Contact Points.

The Discord API documentation (https://discord.com/developers/docs/reference#message-formatting) uses `<@&ID>` for Group Mentions, not the bare `@` shown in the alerting UI. Testing on 8.5 shows that bare `@` isn't working there.
1 parent f4f31b4
Raw File
.bra.toml
[run]
init_cmds = [
  ["make", "gen-go"],
  ["GO_BUILD_DEV=1", "make", "build-cli"],
  ["GO_BUILD_DEV=1", "make", "build-server"],
  ["./bin/grafana-server", "-packaging=dev", "cfg:app_mode=development"]
]
watch_all = true
follow_symlinks = true
watch_dirs = [
  "$WORKDIR/pkg",
  "$WORKDIR/public/views",
  "$WORKDIR/conf",
]
watch_exts = [".go", ".ini", ".toml", ".template.html"]
ignore_files = ["wire_gen.go", "coremodel_gen.go", "registry_gen.go"]
build_delay = 1500
cmds = [
  ["make", "gen-go"],
  ["GO_BUILD_DEV=1", "make", "build-server"],
  ["./bin/grafana-server", "-packaging=dev", "cfg:app_mode=development"]
]
back to top