1
This commit is contained in:
parent
599bf181fe
commit
164f8e7fbd
@ -243,19 +243,25 @@ class MissionController extends BaseAuthedController {
|
|||||||
public function sendOfferRewardMission()
|
public function sendOfferRewardMission()
|
||||||
{
|
{
|
||||||
$missionId = getReqVal('mission_id', 0);
|
$missionId = getReqVal('mission_id', 0);
|
||||||
$this->missionService->sendOfferRewardMission($missionId, $this->propertyChgService);
|
$this->missionService->sendOfferRewardMission(
|
||||||
|
$missionId,
|
||||||
|
$this->propertyChgService);
|
||||||
}
|
}
|
||||||
|
|
||||||
public function offerRewardMissionPreview()
|
public function offerRewardMissionPreview()
|
||||||
{
|
{
|
||||||
$missionId = getReqVal('mission_id', 0);
|
$missionId = getReqVal('mission_id', 0);
|
||||||
$this->missionService->offerRewardMissionPreview($missionId, $this->propertyChgService);
|
$this->missionService->offerRewardMissionPreview(
|
||||||
|
$missionId,
|
||||||
|
$this->propertyChgService);
|
||||||
}
|
}
|
||||||
|
|
||||||
public function cancelOfferRewardMission()
|
public function cancelOfferRewardMission()
|
||||||
{
|
{
|
||||||
$missionId = getReqVal('mission_id', 0);
|
$missionId = getReqVal('mission_id', 0);
|
||||||
$this->missionService->cancelOfferRewardMission($missionId, $this->propertyChgService);
|
$this->missionService->cancelOfferRewardMission(
|
||||||
|
$missionId,
|
||||||
|
$this->propertyChgService);
|
||||||
}
|
}
|
||||||
|
|
||||||
public function boostOfferRewardMission()
|
public function boostOfferRewardMission()
|
||||||
|
Loading…
x
Reference in New Issue
Block a user