mirror of
https://github.com/snipe/snipe-it.git
synced 2024-11-10 07:34:06 -08:00
299ad681f7
Signed-off-by: snipe <snipe@snipe.net>
51 lines
1.6 KiB
PHP
51 lines
1.6 KiB
PHP
@extends('layouts/default')
|
|
|
|
{{-- Page title --}}
|
|
@section('title')
|
|
Personal API Keys
|
|
@parent
|
|
@stop
|
|
|
|
{{-- Page content --}}
|
|
@section('content')
|
|
|
|
|
|
<div class="row">
|
|
<div class="col-md-8">
|
|
|
|
@if (!config('app.lock_passwords'))
|
|
<passport-personal-access-tokens
|
|
token-url="{{ url('oauth/personal-access-tokens') }}"
|
|
scopes-url="{{ url('oauth/scopes') }}">
|
|
</passport-personal-access-tokens>
|
|
@else
|
|
<p class="help-block">{{ trans('general.feature_disabled') }}</p>
|
|
@endif
|
|
</div>
|
|
<div class="col-md-4">
|
|
<div class="alert alert-warning"><i class="fas fa-exclamation-triangle faa-pulse animated"></i>
|
|
When generating an API token, be sure to copy it down immediately as they
|
|
will not be visible to you again. </div>
|
|
|
|
<p>Your API base url is located at:<br>
|
|
<code>{{ url('/api/v1') }}/<endpoint></code></p>
|
|
|
|
<p>API tokens are set to expire in:
|
|
<strong>{{ config('passport.expiration_years') }} years</strong>.</p>
|
|
|
|
|
|
<p>Please check the <a href="https://snipe-it.readme.io/reference" target="_blank">API reference</a> to
|
|
find specific API endpoints and additional API documentation.</p>
|
|
</div>
|
|
</div>
|
|
|
|
@stop
|
|
|
|
@section('moar_scripts')
|
|
<script nonce="{{ csrf_token() }}">
|
|
new Vue({
|
|
el: "#app",
|
|
});
|
|
</script>
|
|
@endsection
|