Files
grecia/app/models/tag.rb
2017-01-12 19:51:58 +01:00

8 lines
121 B
Ruby

class Tag < ActsAsTaggableOn::Tag
def self.public_for_api
where("kind IS NULL OR kind = 'category'")
end
end