Method: Notification#message_from_haml_text

Defined in:
lib/app/models/notification.rb

#message_from_haml_text(haml_text, locals) ⇒ Object



193
194
195
196
197
# File 'lib/app/models/notification.rb', line 193

def message_from_haml_text(haml_text, locals)
  locals[:base_url] = SystemConfiguration.base_url
  engine = Haml::Engine.new(haml_text)
  self.message = engine.render(Object.new, locals)
end