@ -3,7 +3,7 @@ import React from 'react';
import PropTypes from 'prop-types' ;
import { FormattedMessage , defineMessages , injectIntl } from 'react-intl' ;
import { Link } from 'react-router-dom' ;
import { invitesEnabled , version , repository, source _url } from 'flavours/glitch/util/initial_state' ;
import { invitesEnabled , version , limitedFederationMode, repository, source _url } from 'flavours/glitch/util/initial_state' ;
import { signOutLink , securityLink } from 'flavours/glitch/util/backend_links' ;
import { logOut } from 'flavours/glitch/util/log_out' ;
import { openModal } from 'flavours/glitch/actions/modal' ;
@ -47,7 +47,7 @@ class LinkFooter extends React.PureComponent {
< ul >
{ invitesEnabled && < li > < a href = '/invites' target = '_blank' > < FormattedMessage id = 'getting_started.invite' defaultMessage = 'Invite people' / > < / a > · < / l i > }
{ ! ! securityLink && < li > < a href = '/auth/edit' > < FormattedMessage id = 'getting_started.security' defaultMessage = 'Security' / > < / a > · < / l i > }
< li > < a href = '/about/more' target = '_blank' > < FormattedMessage id = 'navigation_bar.info' defaultMessage = 'About this server' / > < / a > · < / l i >
{ ! limitedFederationMode && < li > < a href = '/about/more' target = '_blank' > < FormattedMessage id = 'navigation_bar.info' defaultMessage = 'About this server' / > < / a > · < / l i > }
< li > < a href = 'https://joinmastodon.org/apps' target = '_blank' > < FormattedMessage id = 'navigation_bar.apps' defaultMessage = 'Mobile apps' / > < / a > · < / l i >
< li > < a href = '/terms' target = '_blank' > < FormattedMessage id = 'getting_started.terms' defaultMessage = 'Terms of service' / > < / a > · < / l i >
< li > < a href = '/settings/applications' target = '_blank' > < FormattedMessage id = 'getting_started.developers' defaultMessage = 'Developers' / > < / a > · < / l i >