* Throw away old system * Add new system * Add new example files * Replace all calls * add the most important docs * Add Specs * rename disable_ssl_requirement to require_ssl * cloudfiles isn't used/called in our code * since community_spotlight.list is only used as enable flag replace it with such one and remove all legacy and irelevant codepaths around it * die if session secret is unset and on heroku * First basic infrastructure for version information
18 lines
474 B
Ruby
18 lines
474 B
Ruby
module SessionsHelper
|
|
def prefilled_username
|
|
uri = Addressable::URI.parse(session['user_return_to'])
|
|
if uri && uri.query_values
|
|
uri.query_values["username"]
|
|
else
|
|
nil
|
|
end
|
|
end
|
|
|
|
def display_registration_link?
|
|
!AppConfig.settings.enable_registrations? && devise_mapping.registerable? && controller_name != 'registrations'
|
|
end
|
|
|
|
def display_password_reset_link?
|
|
devise_mapping.recoverable? && controller_name != 'passwords'
|
|
end
|
|
end
|