creacoon/laravel-dashboard-gitlab-user-counts-tile
最新稳定版本:1.0.2
Composer 安装命令:
composer require creacoon/laravel-dashboard-gitlab-user-counts-tile
包简介
GitLab Tile
关键字:
README 文档
README
GitLab User Counts Tile
This tile displays user counts from GitLab, including assigned merge requests, review requested merge requests, and todos.
Installation
You can install the tile via composer:
composer require creacoon/laravel-dashboard-gitlab-user-counts-tile
In the dashboard config file, you must add this configuration in the tiles key.
Sign up at your GitLab instance to obtain GITLAB_API_TOKEN
// in config/dashboard.php return [ // ... 'tiles' => [ 'gitlab' => [ 'api_token' => env('GITLAB_API_TOKEN'), 'api_url' => env('GITLAB_API_URL', 'https://gitlab.com'), 'specific_users' => explode(',', env('GITLAB_SPECIFIC_USERS')), ], ], ];
In app\Console\Kernel.php you should schedule the Creacoon\GitLabTile\FetchDataFromGitLabUserCountsCommand to run at your desired interval.
// in app/console/Kernel.php protected function schedule(Schedule $schedule) { // ... $schedule->command(\Creacoon\GitLabTile\FetchDataFromGitLabUserCountsCommand::class)->everyMinute(); }
Usage
In your dashboard view you use the livewire:gitlab-user-counts-tile component.
<x-dashboard> <livewire:gitlab-user-counts-tile position="a1" /> </x-dashboard>
Customizing the view
If you want to customize the view used to render this tile, run this command:
php artisan vendor:publish --provider="Creacoon\GitLabTile\GitLabUserCountsTileServiceProvider" --tag="dashboard-gitlab-user-counts-tile-views"```
统计信息
- 总下载量: 85
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 0
- 点击次数: 0
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2024-09-05