mirror of
https://github.com/Deathgarden-Rebirth/Deathgarden_Rebirth-Rewrite.git
synced 2026-09-09 03:35:14 -05:00
Implemented tracking the progress of Signature challenges. Also implemented both challenges Endpoints "getChallenges" ans "getChallengeProgressionBatch". For "getChallenges", we just return an empty array since we dont need weekly and dailies yet.
8 lines
144 B
PHP
8 lines
144 B
PHP
<?php
|
|
|
|
namespace App\Http\Responses\Api\Player\Challenges;
|
|
|
|
class ChallengeProgressionBatchResponse
|
|
{
|
|
public array $progressionBatch = [];
|
|
} |