forked from electricdusk/rushlink
Only provide deleteToken if requested by user
This commit is contained in:
@@ -9,6 +9,9 @@ the command line.
|
||||
## USAGE
|
||||
|
||||
# Shorten a URL
|
||||
curl -F'shorten=http://example.com/some/long/url' <a href="https://hashru.link">https://hashru.link</a>
|
||||
curl -F'shorten=http://example.com/some/long/url' <a href="{{Request.Host}}">{{Request.Host}}</a>
|
||||
|
||||
# Shorten a URL with a token to delete it later
|
||||
curl -F'shorten=http://example.com/some/long/url' -F'deleteToken=' <a href="{{Request.Host}}">{{Request.Host}}</a>
|
||||
</pre>
|
||||
{{end}}
|
||||
@@ -7,4 +7,7 @@ the command line.
|
||||
## USAGE
|
||||
|
||||
# Shorten a URL
|
||||
curl -F'shorten=http://example.com/some/long/url' https://hashru.link
|
||||
curl -F'shorten=http://example.com/some/long/url' {{Request.Host}}
|
||||
|
||||
# Shorten a URL with a token to delete it later
|
||||
curl -F'shorten=http://example.com/some/long/url' -F'deleteToken=' {{Request.Host}}
|
||||
@@ -1 +1,5 @@
|
||||
{{.Request.Host}}/{{.Paste.Key}}?deleteToken={{.Paste.DeleteToken}}
|
||||
{{- if .Request.PostForm.deleteToken -}}
|
||||
{{.Request.Host}}/{{.Paste.Key}}?deleteToken={{.Paste.DeleteToken | urlquery}}
|
||||
{{else -}}
|
||||
{{.Request.Host}}/{{.Paste.Key}}
|
||||
{{end -}}
|
||||
|
||||
Reference in New Issue
Block a user