From cc1eccc8bc6b6f49cef0f4cf6a74ced8f3262b54 Mon Sep 17 00:00:00 2001 From: Eugen Rochko Date: Sun, 15 Jan 2017 14:38:59 +0100 Subject: Fix #466 - when logged in, make "get started" link to the frontpage instead of sign up --- app/views/about/more.html.haml | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) (limited to 'app/views/about') diff --git a/app/views/about/more.html.haml b/app/views/about/more.html.haml index 8b0925f00..28300900c 100644 --- a/app/views/about/more.html.haml +++ b/app/views/about/more.html.haml @@ -45,7 +45,10 @@ .panel-header= t 'about.links' .panel-list %ul - %li= link_to t('about.get_started'), new_user_registration_path - %li= link_to t('auth.login'), new_user_session_path + - if user_signed_in? + %li= link_to t('about.get_started'), root_path + - else + %li= link_to t('about.get_started'), new_user_registration_path + %li= link_to t('auth.login'), new_user_session_path %li= link_to t('about.terms'), terms_path %li= link_to t('about.source_code'), 'https://github.com/tootsuite/mastodon' -- cgit