diff options
author | Benny Morrison <benmorrison@ttm.sh> | 2019-03-18 20:18:40 -0400 |
---|---|---|
committer | Benny Morrison <benmorrison@ttm.sh> | 2019-03-18 20:18:40 -0400 |
commit | 6e88345ae8796fedaa8c9410b24f371c62d37fc4 (patch) | |
tree | 517fed1a9ddb3ca099576045e802140e52b18abb /gotify.sh.example | |
parent | 9c149f6d9edead1410412d49171351ed279cb9ff (diff) | |
download | goofbot-6e88345ae8796fedaa8c9410b24f371c62d37fc4.tar.gz |
updated gotify.sh.example
Diffstat (limited to 'gotify.sh.example')
-rw-r--r-- | gotify.sh.example | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gotify.sh.example b/gotify.sh.example index 91d4f45..667db58 100644 --- a/gotify.sh.example +++ b/gotify.sh.example @@ -1,8 +1,8 @@ -#!/usr/local/bin/bash +#!/bin/bash curl --request POST \ - --url 'https://gotify.tildeverse.org/message?token=redacted' \ + --url 'https://gotify.tildeverse.org/message?token=APIKEYHERE' \ --header 'accept: application/json' \ --header 'content-type: application/json' \ - --header 'x-gotify-key: redacted' \ + --header 'x-gotify-key: APIKEYHERE' \ --data '{ "message": "A hero is needed in #institute", "priority": 5, "title": "Admin Request" }' |