mirror of
https://github.com/snipe/snipe-it.git
synced 2024-11-10 15:44:11 -08:00
29 lines
553 B
PHP
29 lines
553 B
PHP
@extends('layouts/default')
|
|
|
|
{{-- Page title --}}
|
|
@section('title')
|
|
OAuth API Settings
|
|
@parent
|
|
@stop
|
|
|
|
{{-- Page content --}}
|
|
@section('content')
|
|
@if (!config('app.lock_passwords'))
|
|
<div id="app">
|
|
<passport-clients></passport-clients>
|
|
<passport-authorized-clients></passport-authorized-clients>
|
|
</div>
|
|
@else
|
|
<p class="help-block">{{ trans('general.feature_disabled') }}</p>
|
|
@endif
|
|
|
|
@stop
|
|
|
|
@section('moar_scripts')
|
|
<script>
|
|
new Vue({
|
|
el: "#app",
|
|
});
|
|
</script>
|
|
@endsection
|