mirror of
https://github.com/tiennm99/coolify.git
synced 2026-08-20 16:23:30 +00:00
Add dedicated service volume-backup Livewire pages and routes, wire shared storage backups for services, and pass S3 trusted hosts into MinIO resolve options. Also refine breadcrumbs, sticky sidebars, destination/GitHub layouts, resource filters, and login recovery link.
28 lines
1.7 KiB
PHP
28 lines
1.7 KiB
PHP
<div class="application-settings-form">
|
|
<x-application.settings-section title="Permissions"
|
|
description="GitHub permissions currently granted to this App.">
|
|
<x-slot:actions>
|
|
@can('view', $github_app)
|
|
<x-forms.button type="button" wire:click.prevent="checkPermissions">
|
|
<x-reicon name="refresh" class="size-3.5" />
|
|
Refetch
|
|
</x-forms.button>
|
|
<a href="{{ getPermissionsPath($github_app) }}" class="button">
|
|
Update on GitHub
|
|
<x-external-link />
|
|
</a>
|
|
@endcan
|
|
</x-slot:actions>
|
|
|
|
<div class="grid gap-4 lg:grid-cols-3">
|
|
<x-forms.input canGate="view" :canResource="$github_app" id="contents"
|
|
helper="Read access is mandatory." label="Contents" readonly placeholder="N/A" />
|
|
<x-forms.input canGate="view" :canResource="$github_app" id="metadata"
|
|
helper="Read access is mandatory." label="Metadata" readonly placeholder="N/A" />
|
|
<x-forms.input canGate="view" :canResource="$github_app" id="pullRequests"
|
|
helper="Write access is needed for preview deployment status updates."
|
|
label="Pull requests" readonly placeholder="N/A" />
|
|
</div>
|
|
</x-application.settings-section>
|
|
</div>
|