class Lookbook::PreviewCollection

def self.describe_as

def self.describe_as
  "previews"
end

def find_example(path)

def find_example(path)
  Lookbook::PreviewExample.all.find { |e| e.lookup_path == path }
end

def id

def id
  generate_id("preview-collection", lookup_path || "root")
end

def label

def label
  "Previews"
end

def type

def type
  :preview_collection
end