This tile shows all the in progress Jira stories. It shows the story key, story title and the assignee profile image.
This tile can be used on the Laravel Dashboard.
- Require package via composer
- Place the required values in the
.env
file. - Place the tile component in your dashboard.
- Schedule the command in the
app/console/kernel.php
You can install the package via composer:
composer require creacoon/laravel-dashboard-jira-tile
Place this in the .env
file.
JIRA_HOST=
JIRA_AUTHENTICATION="basic_token"
JIRA_USER=
JIRA_API_TOKEN=
In your dashboard view you use the livewire:jira-tile
component.
<x-dashboard>
<livewire:jira-tile position="a2" refresh-interval="60"/>
</x-dashboard>
In app\Console\Kernel.php
you should schedule the following commands.
protected function schedule(Schedule $schedule)
{
// ...
$schedule->command(FetchDataFromJiraCommand::class)->everyFiveMinutes();
}
If you want to customize the view used to render this tile, run this command:
php artisan vendor:publish --tag="dashboard-jira-tile-views"
composer test
Please see CHANGELOG for more information on what has changed recently.
Please see CONTRIBUTING for details.
If you discover any security related issues, please email support@creacoon.nl instead of using the issue tracker.
The MIT License (MIT). Please see License File for more information.