Browse Source

When registrations closed, link "Sign up" to joinmastodon.org (#8395)

Fix #8393
pull/4/head
Eugen Rochko 5 years ago
committed by GitHub
parent
commit
69ba8f063c
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions
  1. +1
    -1
      app/views/auth/shared/_links.html.haml
  2. +1
    -1
      app/views/layouts/public.html.haml

+ 1
- 1
app/views/auth/shared/_links.html.haml View File

@ -3,7 +3,7 @@
%li= link_to t('auth.login'), new_session_path(resource_name)
- if devise_mapping.registerable? && controller_name != 'registrations'
%li= link_to t('auth.register'), new_registration_path(resource_name)
%li= link_to t('auth.register'), open_registrations? ? new_registration_path(resource_name) : 'https://joinmastodon.org/#getting-started'
- if devise_mapping.recoverable? && controller_name != 'passwords' && controller_name != 'registrations'
%li= link_to t('auth.forgot_password'), new_password_path(resource_name)

+ 1
- 1
app/views/layouts/public.html.haml View File

@ -14,7 +14,7 @@
= link_to t('settings.back'), root_url, class: 'nav-link nav-button webapp-btn'
- else
= link_to t('auth.login'), new_user_session_path, class: 'webapp-btn nav-link nav-button'
= link_to t('auth.register'), new_user_registration_path, class: 'webapp-btn nav-link nav-button'
= link_to t('auth.register'), open_registrations? ? new_user_registration_path : 'https://joinmastodon.org/#getting-started', class: 'webapp-btn nav-link nav-button'
.container= yield

Loading…
Cancel
Save