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

29 lines
553 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-07-07 23:44:48 -07:00
<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
2017-01-11 01:02:32 -08:00
@stop
@section('moar_scripts')
<script>
new Vue({
el: "#app",
});
</script>
2017-07-07 23:44:48 -07:00
@endsection