locomotivecms/steam

View on GitHub
lib/locomotive/steam/liquid/tags/editable/model.rb

Summary

Maintainability
A
0 mins
Test Coverage
module Locomotive
  module Steam
    module Liquid
      module Tags
        module Editable
          class Model < Base

            def render(context)
              default_render(context)
            end

            def render_default_content
              nil
            end

          end

          ::Liquid::Template.register_tag('editable_model'.freeze, Model)
        end
      end
    end
  end
end