unread
unread copied to clipboard
Adding a new .read?(current_user) instance method in readable.rb InstanceMethods
Currently there is only a .unread? method which means to determine if something is read you need to do !thing.unread(current_user). Would it be a good idea to add a .read?(current_user) method?
def read?(reader)
!unread?(reader)
end