Updated readme and docs

This commit is contained in:
Constantin Graf
2024-04-16 16:54:03 +02:00
committed by Gregor Vostrak
parent 1f79d5e50a
commit 43e096b153
3 changed files with 8 additions and 5 deletions

View File

@@ -1,9 +1,9 @@
# solidtime # solidtime - The modern Open-Source Time Tracker
![GitHub License](https://img.shields.io/github/license/solidtime-io/solidtime) ![GitHub License](https://img.shields.io/github/license/solidtime-io/solidtime?style=flat-square)
![Codecov](https://img.shields.io/codecov/c/github/solidtime-io/solidtime?style=flat-square&logo=codecov) ![Codecov](https://img.shields.io/codecov/c/github/solidtime-io/solidtime?style=flat-square&logo=codecov)
![GitHub Actions Unit Tests Status](https://img.shields.io/github/actions/workflow/status/solidtime-io/solidtime/phpunit.yml?style=flat-square) ![GitHub Actions Unit Tests Status](https://img.shields.io/github/actions/workflow/status/solidtime-io/solidtime/phpunit.yml?style=flat-square)
![PHPStan badge](https://img.shields.io/badge/PHPstan-Level_7-blue?style=flat-square&color=blue) ![PHPStan badge](https://img.shields.io/badge/PHPStan-Level_7-blue?style=flat-square&color=blue)
![Screenshot of the solidtime application with header: solidtime - The modern Open-Source Time Tracker](docs/solidtime-banner.png "solidtime Banner") ![Screenshot of the solidtime application with header: solidtime - The modern Open-Source Time Tracker](docs/solidtime-banner.png "solidtime Banner")

View File

@@ -27,7 +27,7 @@ class ProjectController extends Controller
} }
/** /**
* Get projects * Get projects visible to the current user
* *
* @return ProjectCollection<ProjectResource> * @return ProjectCollection<ProjectResource>
* *

View File

@@ -31,7 +31,10 @@ class TimeEntryController extends Controller
} }
/** /**
* Get time entries * Get all time entries in organization
*
* If you only need time entries for a specific user, you can filter by `user_id`.
* Users with the permission `time-entries:view:own` can only use this endpoint with their own user ID in the user_id filter.
* *
* @throws AuthorizationException * @throws AuthorizationException
* *