blob: 1e9bde1a0eb64819087bd1249e507d763eb077ee (
plain) (
tree)
|
|
class SidebarModule
attr_reader :title, :body, :position
def initialize(title, body, pos)
@title = title
@body = body
@position = pos
end
def to_partial_path
"sidebar_modules/#{self.class.to_s.underscore}"
end
end
|