snipe-it/resources/views/settings/api.blade.php

26 lines
506 B
PHP
Raw Normal View History

2017-01-11 01:02:32 -08:00
@extends('layouts/default')
{{-- Page title --}}
@section('title')
2017-01-11 04:05:32 -08:00
OAuth API Settings
2017-01-11 01:02:32 -08:00
@parent
@stop
{{-- Page content --}}
@section('content')
@if (!config('app.lock_passwords'))
2017-01-11 01:02:32 -08:00
<passport-clients></passport-clients>
<passport-authorized-clients></passport-authorized-clients>
@else
<p class="help-block">{{ trans('general.feature_disabled') }}</p>
@endif
2017-01-11 01:02:32 -08:00
@stop
@section('moar_scripts')
<script>
new Vue({
el: "#app",
});
</script>
@endsection