* #132 - added translations * wip * #132 - added translations * #132 - cs fix * #132 - cs fix Co-authored-by: Adrian Hopek <adrian.hopek@blumilk.pl>
		
			
				
	
	
		
			27 lines
		
	
	
		
			631 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			27 lines
		
	
	
		
			631 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
<?php
 | 
						|
 | 
						|
declare(strict_types=1);
 | 
						|
 | 
						|
namespace Toby\Infrastructure\Slack\Handlers;
 | 
						|
 | 
						|
use Spatie\SlashCommand\Request;
 | 
						|
use Spatie\SlashCommand\Response;
 | 
						|
use Toby\Eloquent\Models\Key;
 | 
						|
use Toby\Infrastructure\Slack\Elements\KeysAttachment;
 | 
						|
 | 
						|
class KeyList extends SignatureHandler
 | 
						|
{
 | 
						|
    protected $signature = "toby klucze";
 | 
						|
    protected $description = "List of all keys";
 | 
						|
 | 
						|
    public function handle(Request $request): Response
 | 
						|
    {
 | 
						|
        $keys = Key::query()
 | 
						|
            ->orderBy("id")
 | 
						|
            ->get();
 | 
						|
 | 
						|
        return $this->respondToSlack(__("Keys list :key:"))
 | 
						|
            ->withAttachment(new KeysAttachment($keys));
 | 
						|
    }
 | 
						|
}
 |