Files
danbooru/app/logical/post_sets/base.rb
2018-10-20 17:15:29 -07:00

48 lines
504 B
Ruby

module PostSets
class Base
def has_wiki?
false
end
def raw
false
end
def wiki_page
nil
end
def has_artist?
false
end
def artist
nil
end
def is_single_tag?
false
end
def tag_string
nil
end
def unknown_post_count?
false
end
def use_sequential_paginator?
false
end
def best_post
nil
end
def presenter
raise NotImplementedError
end
end
end