impress/app/helpers/closet_pages_helper.rb
Matchu 22e3f4240a Update most URLs to use HTTPS
I noticed we didn't have the little lock icon in the browser, and yeah
huh there's a lot of `http://` still floating around! Let's fix that!
2023-10-25 15:22:57 -07:00

10 lines
210 B
Ruby

module ClosetPagesHelper
def link_to_neopets_login(content)
link_to content, neopets_login_url, :target => "_blank"
end
def neopets_login_url
"https://www.neopets.com/loginpage.phtml"
end
end