diff options
author | pdp8 <pdp8@pdp8.info> | 2023-07-17 19:09:02 +0200 |
---|---|---|
committer | pdp8 <pdp8@pdp8.info> | 2023-07-17 19:09:02 +0200 |
commit | 4ca1c5555f18703d1dac673b1a77d1c919fb4787 (patch) | |
tree | 2f57783bdc1786e09737196a2fae07a720452d4f /views/object.erb | |
parent | 2e614738f72c9af634c4a630693d06f144bc24df (diff) |
write to json instead of direcories
Diffstat (limited to 'views/object.erb')
-rw-r--r-- | views/object.erb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/views/object.erb b/views/object.erb index 3e6e617..6ac9f43 100644 --- a/views/object.erb +++ b/views/object.erb @@ -1,6 +1,6 @@ <% @idx +=1 mention = mention @object['attributedTo'] - follow = File.exist?(File.join(FOLLOWING_DIR, "#{mention}.json")) ? 'unfollow' : 'follow' + JSON.parse(File.read(FOLLOWING))['orderedItems'].include?(@object['attributedTo']) ? follow='unfollow' : follow='follow' %> <div style='margin-left:<%= @object['indent']%>em' id='<%= @idx %>'> <b><a href='<%= @object['attributedTo'] %>', target='_blank'><%= mention %></a></b> |