applications.blade.php 507 B

12345678910111213141516171819
  1. @extends('settings.template')
  2. @section('section')
  3. <div class="title">
  4. <h3 class="font-weight-bold">Applications</h3>
  5. </div>
  6. <hr>
  7. @if(config_cache('pixelfed.oauth_enabled') == true)
  8. <passport-authorized-clients></passport-authorized-clients>
  9. <passport-personal-access-tokens></passport-personal-access-tokens>
  10. @else
  11. <p class="lead">OAuth has not been enabled on this instance.</p>
  12. @endif
  13. @endsection
  14. @push('scripts')
  15. <script type="text/javascript" src="{{mix('js/developers.js')}}"></script>
  16. @endpush