1
0
Fork 0
pixelfed/resources/views/settings/developers.blade.php

19 lines
408 B
PHP
Raw Normal View History

2018-05-30 02:37:10 +00:00
@extends('settings.template')
@section('section')
2019-06-17 19:00:52 +00:00
<div class="title">
<h3 class="font-weight-bold">Developers</h3>
</div>
<hr>
@if(config('pixelfed.oauth_enabled') == true)
<passport-clients></passport-clients>
@else
<p class="lead">OAuth has not been enabled on this instance.</p>
@endif
2018-11-04 04:34:45 +00:00
@endsection
2018-05-30 02:37:10 +00:00
2018-11-04 04:34:45 +00:00
@push('scripts')
2019-04-07 18:15:36 +00:00
<script type="text/javascript" src="{{mix('js/developers.js')}}"></script>
2018-11-04 04:34:45 +00:00
@endpush