vfonic/solidify

View on GitHub
app/drops/solidify/link_drop.rb

Summary

Maintainability
A
0 mins
Test Coverage
module Solidify
  class LinkDrop < ::Liquid::Rails::Drop
    attributes :title, :url

    belongs_to :link_list

    def active
      @context.registers[:view].current_page?(@object.url)
    end

    def type
      nil
    end
  end
end