Matchu
22e3f4240a
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!
10 lines
210 B
Ruby
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
|
|
|