# I am the Watcher. I am your guide through this vast new twtiverse.
# 
# Usage:
#     https://watcher.sour.is/api/plain/users              View list of users and latest twt date.
#     https://watcher.sour.is/api/plain/twt                View all twts.
#     https://watcher.sour.is/api/plain/mentions?uri=:uri  View all mentions for uri.
#     https://watcher.sour.is/api/plain/conv/:hash         View all twts for a conversation subject.
# 
# Options:
#     uri     Filter to show a specific users twts.
#     offset  Start index for quey.
#     limit   Count of items to return (going back in time).
# 
# twt range = 1 5
# self = https://watcher.sour.is/conv/oh3eixa
By the way, @prologic, the issue with the icons (edit, delete, reply) happens on *twtxt.net*, and vanilla installs. If you click on the text, it works (try "edit"), but clicking the icon doesn't (also, try "edit", but the icon instead). Clicking 5px up, or down, works on the icon---but not clicking on the icon itself.
While on clicking topic, is it possible to link the message hash on the low right corner of a twt? I would like to link that hash to a search for the hash itself. What will I need to do to accomplish that? Right now, it is just a hash sitting there, doing pretty much nothing.
@fastidious Yes we can do that. In fact that might be a good idea given the experimental feature strip_conv_subject_hashes. If you PR that, should be a one-line template change, I'll accept that 🤗 Maybe put it behind the same feature flag for now though? Something like:


{{ if isFeatureEnabled "strip_conv_subject_hashes" }}
    <a href="/search?tag={{ $.Twt.Hash }}"><em class="twt-hash"> #{{ $.Twt.Hash }} </em></a>
{{ else }}
  <em class="twt-hash"> #{{ $.Twt.Hash }} </em>
{{ end }}
@fastidious Yes we can do that. In fact that might be a good idea given the experimental feature strip_conv_subject_hashes. If you PR that, should be a one-line template change, I'll accept that 🤗 Maybe put it behind the same feature flag for now though? Something like:


{{ if isFeatureEnabled "strip_conv_subject_hashes" }}
    <a href="/search?tag={{ $.Twt.Hash }}"><em class="twt-hash"> #{{ $.Twt.Hash }} </em></a>
{{ else }}
  <em class="twt-hash"> #{{ $.Twt.Hash }} </em>
{{ end }}
@prologic on the road, but I will send it in as soon as I hit home. Thanks!