pixelfed/resources/views/settings/developers.blade.php

20 lines
470 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">
2024-12-12 14:58:30 +00:00
<h3 class="font-weight-bold">{{__('settings.developers')}}</h3>
2019-06-17 19:00:52 +00:00
</div>
<hr>
2024-03-12 09:55:51 +00:00
@if((bool) config_cache('pixelfed.oauth_enabled') == true)
2019-06-17 19:00:52 +00:00
<passport-clients></passport-clients>
@else
2024-12-12 14:58:30 +00:00
<p class="lead">{{__('settings.developers.oauth_has_not_been_enabled_on_this_instance')}}</p>
2019-06-17 19:00:52 +00:00
@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>
2021-05-12 00:26:52 +00:00
@endpush