Skip to content

Commit dfc0c76

Browse files
Merge pull request #3 from hookdeck/feat/unauthenticated-user
Feat/unauthenticated user
2 parents 525e84f + e36d8a8 commit dfc0c76

File tree

2 files changed

+9
-1
lines changed

2 files changed

+9
-1
lines changed

README.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -134,6 +134,14 @@ Inventory Service forwarding to /webhooks/shopify/inventory
134134

135135
Webhooks logs for your CLI can be found at https://dashboard.hookdeck.com/cli/events. Events can be replayed or saved at any time.
136136

137+
### Logout
138+
139+
Logout of your Hookdeck account and clear your stored credentials.
140+
141+
```sh-session
142+
hookdeck logout
143+
```
144+
137145
### Version
138146

139147
Print your CLI version and whether or not a new version is available.

pkg/proxy/proxy.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -252,7 +252,7 @@ func (p *Proxy) processEndpointResponse(webhookEvent *websocket.Attempt, resp *h
252252
localTime := time.Now().Format(timeLayout)
253253

254254
color := ansi.Color(os.Stdout)
255-
outputStr := fmt.Sprintf("%s [%d] %s %s | https://dashboard.hookdeck.com/events/%s",
255+
outputStr := fmt.Sprintf("%s [%d] %s %s | https://dashboard.hookdeck.com/cli/events/%s",
256256
color.Faint(localTime),
257257
ansi.ColorizeStatus(resp.StatusCode),
258258
resp.Request.Method,

0 commit comments

Comments
 (0)