mirror of
				https://github.com/pelican-dev/panel.git
				synced 2025-10-31 22:46:53 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			26 lines
		
	
	
		
			574 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			26 lines
		
	
	
		
			574 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <?php
 | |
| 
 | |
| namespace App\Filament\Admin\Resources\WebhookResource\Pages;
 | |
| 
 | |
| use App\Filament\Admin\Resources\WebhookResource;
 | |
| use Filament\Actions\DeleteAction;
 | |
| use Filament\Resources\Pages\EditRecord;
 | |
| 
 | |
| class EditWebhookConfiguration extends EditRecord
 | |
| {
 | |
|     protected static string $resource = WebhookResource::class;
 | |
| 
 | |
|     protected function getHeaderActions(): array
 | |
|     {
 | |
|         return [
 | |
|             DeleteAction::make(),
 | |
|             $this->getSaveFormAction()->formId('form'),
 | |
|         ];
 | |
|     }
 | |
| 
 | |
|     protected function getFormActions(): array
 | |
|     {
 | |
|         return [];
 | |
|     }
 | |
| }
 | 
