account-migration.blade.php 742 B

12345678910111213141516171819
  1. @extends('site.help.partial.template', ['breadcrumb'=>'Account Migration'])
  2. @section('section')
  3. <div class="title">
  4. <h3 class="font-weight-bold">Account Migration</h3>
  5. </div>
  6. <hr>
  7. @if((bool) config_cache('federation.migration') === false)
  8. <div class="alert alert-danger">
  9. <p class="font-weight-bold mb-0">Account Migration is not available on this server.</p>
  10. </div>
  11. @endif
  12. <p class="lead">Account Migration is a feature that allows users to move their account followers from one Pixelfed instance (server) to another.</p>
  13. <p class="lead">This can be useful if a user wants to switch to a different instance due to preferences for its community, policies, or features.</p>
  14. @endsection