# -*- encoding : utf-8 -*- class Card; module Set; class Self # Set: The card "Edited" # module Edited; extend Card::Set def self.source_location; "/Users/ezl5238/dev/decko/gem/mod/follow/set/self/edited.rb"; end include_set Abstract::FollowOption restrictive_follow_opts position: 2 follower_candidate_ids do |card| # FIXME? - could optimize by not using cards table... card.id ? Card.search(editor_of: card.id, return: :id) : [] end def title "Following content you edited" end def label "follow if I edited" end def description set_card "#{set_card.follow_label} I edited" end end;end;end;end; # ~~ generated from /Users/ezl5238/dev/decko/gem/mod/follow/set/self/edited.rb ~~