Sha256: 16d119b55dda447a67e86d51e84812157a6dbe69afc96692f4aa8f6329c476d1
Contents?: true
Size: 762 Bytes
Versions: 60
Compression:
Stored size: 762 Bytes
Contents
module Extface class ApplicationController < ActionController::Base prepend_before_filter :include_extra_module helper_method :extface def index end def extfaceable @extfaceable ||= extface_mapping.i_klass.find_by(extface_mapping.i_find_key => params[extface_mapping.i_param]) end private def extface_mapping @extface_mapping ||= Extface::Mapping.find(request.fullpath) end def include_extra_module self.class.send(:include, extface_mapping.i_extra_module) if extface_mapping.i_extra_module.present? end def extface try(extface_mapping.mount_point) || super # rails 4.1 fixed named route for engines mounted for resources end end end
Version data entries
60 entries across 60 versions & 1 rubygems