claim bulk

This commit is contained in:
xiaomlove
2023-03-13 17:41:03 +08:00
parent 77420ea1e1
commit 709ca90458
12 changed files with 98 additions and 22 deletions
+7
View File
@@ -161,3 +161,10 @@ function saveUserMedal($params)
$rep = new \App\Repositories\MedalRepository();
return $rep->saveUserMedal($CURUSER['id'], $data);
}
function claimAllSeeding()
{
global $CURUSER;
$rep = new \App\Repositories\ClaimRepository();
return $rep->claimAllSeeding($CURUSER['id']);
}