Skip to content

Commit

Permalink
Merge branch 'feature/admin-users-section' of https://github.com/open…
Browse files Browse the repository at this point in the history
…foodfoundation/vine into feature/admin-users-section
  • Loading branch information
ok200manami committed Aug 28, 2024
2 parents 881db50 + e26d564 commit be19a4a
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 5 deletions.
11 changes: 11 additions & 0 deletions app/Http/Controllers/Api/V1/ApiMyTeamController.php
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,9 @@ public function index(): JsonResponse

/**
* POST /
*
* @hideFromAPIDocumentation
*
* @return JsonResponse
*/
public function store(): JsonResponse
Expand All @@ -89,8 +91,11 @@ public function store(): JsonResponse

/**
* GET / {id}
*
* @hideFromAPIDocumentation
*
* @param string $id
*
* @return JsonResponse
*/
public function show(string $id)
Expand All @@ -103,8 +108,11 @@ public function show(string $id)

/**
* PUT / {id}
*
* @hideFromAPIDocumentation
*
* @param string $id
*
* @return JsonResponse
*/
public function update(string $id)
Expand All @@ -117,8 +125,11 @@ public function update(string $id)

/**
* DELETE / {id}
*
* @hideFromAPIDocumentation
*
* @param string $id
*
* @return JsonResponse
*/
public function destroy(string $id)
Expand Down
6 changes: 3 additions & 3 deletions config/services.php
Original file line number Diff line number Diff line change
Expand Up @@ -35,9 +35,9 @@
],
],
'mailgun' => [
'domain' => env('MAILGUN_DOMAIN'),
'secret' => env('MAILGUN_SECRET'),
'domain' => env('MAILGUN_DOMAIN'),
'secret' => env('MAILGUN_SECRET'),
'endpoint' => env('MAILGUN_ENDPOINT', 'api.mailgun.net'),
'scheme' => 'https',
'scheme' => 'https',
],
];
4 changes: 2 additions & 2 deletions routes/console.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,5 @@
use Illuminate\Support\Facades\Schedule;

Schedule::command(DispatchCollateSystemStatisticsJobCommand::class)
->dailyAt('23:55')
->timezone('Australia/Melbourne');
->dailyAt('23:55')
->timezone('Australia/Melbourne');

0 comments on commit be19a4a

Please sign in to comment.