Skip to content

Commit

Permalink
Merge pull request #92 from YournameITManoah/main
Browse files Browse the repository at this point in the history
Deploy
  • Loading branch information
YournameITManoah authored Jan 24, 2025
2 parents d11973a + 3058ce5 commit e2a02c1
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 0 deletions.
1 change: 1 addition & 0 deletions app/Http/Controllers/Api/ConnectionApiController.php
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ class ConnectionApiController extends ApiController
* Display a listing of the resource.
*
* @response LengthAwarePaginator<Connection>
* @throws \Illuminate\Auth\Access\AuthorizationException
*/
public function index(Request $request)
{
Expand Down
9 changes: 9 additions & 0 deletions app/Http/Controllers/Api/TimeLogApiController.php
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ class TimeLogApiController extends ApiController
* Display a listing of the resource.
*
* @response LengthAwarePaginator<TimeLog>
* @throws \Illuminate\Auth\Access\AuthorizationException
*/
public function index(Request $request)
{
Expand Down Expand Up @@ -51,6 +52,8 @@ public function index(Request $request)

/**
* Store a newly created resource in storage.
*
* @throws \Illuminate\Auth\Access\AuthorizationException
*/
public function store(StoreTimeLogRequest $request)
{
Expand All @@ -76,6 +79,8 @@ public function store(StoreTimeLogRequest $request)

/**
* Display the specified resource.
*
* @throws \Illuminate\Auth\Access\AuthorizationException
*/
public function show(Request $request, TimeLog $timeLog)
{
Expand All @@ -88,6 +93,8 @@ public function show(Request $request, TimeLog $timeLog)

/**
* Update the specified resource in storage.
*
* @throws \Illuminate\Auth\Access\AuthorizationException
*/
public function update(StoreTimeLogRequest $request, TimeLog $timeLog)
{
Expand All @@ -105,6 +112,8 @@ public function update(StoreTimeLogRequest $request, TimeLog $timeLog)

/**
* Remove the specified resource from storage.
*
* @throws \Illuminate\Auth\Access\AuthorizationException
*/
public function destroy(Request $request, TimeLog $timeLog)
{
Expand Down

0 comments on commit e2a02c1

Please sign in to comment.