mirror of
https://github.com/snipe/snipe-it.git
synced 2024-11-10 15:44:11 -08:00
fde46251de
* Toggles the disabled state of auto_increment_prefix To insert a prefix you had to toggle the checkbox, save the settings and reload. With this script it is immediate. Fixes #1390 * Delete asset image: made checkbox more visible Related to #3153 * Added personal-access-token component * Created basic API testing configuration * First version of /components endpoind cest * On-the-fly bearer token generation * Completed testing of PATCH and PUT methods * Added /components/{id}/assets route with tests * Updated route and dataTable in view * Completed test assertion * Added links to assets in ComponentsAssets view * Linked Company in AssetView page
29 lines
645 B
PHP
29 lines
645 B
PHP
@extends('layouts/default')
|
|
|
|
{{-- Page title --}}
|
|
@section('title')
|
|
OAuth API Settings
|
|
@parent
|
|
@stop
|
|
|
|
{{-- Page content --}}
|
|
@section('content')
|
|
@if (!config('app.lock_passwords'))
|
|
<passport-clients></passport-clients>
|
|
<passport-authorized-clients></passport-authorized-clients>
|
|
@if(env('APP_ENV') != 'production')
|
|
<passport-personal-access-tokens></passport-personal-access-tokens>
|
|
@endif
|
|
@else
|
|
<p class="help-block">{{ trans('general.feature_disabled') }}</p>
|
|
@endif
|
|
|
|
@stop
|
|
|
|
@section('moar_scripts')
|
|
<script>
|
|
new Vue({
|
|
el: "#app",
|
|
});
|
|
</script>
|
|
@endsection |