module Authpds::Helpers::Institution::UrlHelper
Public Instance Methods
url_for(options={})
click to toggle source
Override Rails url_for
to add institution
Calls superclass method
# File lib/authpds/helpers/institution/url_helper.rb, line 9 def url_for(options={}) if institution_param.present? and options.is_a? Hash options[institution_param_key] ||= institution_param end super options end