38 lines
890 B
PHP
38 lines
890 B
PHP
<?php
|
|
|
|
/*
|
|
* This file is part of Cachet.
|
|
*
|
|
* (c) Alt Three Services Limited
|
|
*
|
|
* For the full copyright and license information, please view the LICENSE
|
|
* file that was distributed with this source code.
|
|
*/
|
|
|
|
namespace CachetHQ\Cachet\Http\Controllers\Api;
|
|
|
|
use CachetHQ\Cachet\Bus\Commands\Subscriber\UnsubscribeSubscriptionCommand;
|
|
use CachetHQ\Cachet\Models\Subscription;
|
|
|
|
/**
|
|
* This is the subscription controller class.
|
|
*
|
|
* @author James Brooks <james@alt-three.com>
|
|
*/
|
|
class SubscriptionController extends AbstractApiController
|
|
{
|
|
/**
|
|
* Delete a subscription.
|
|
*
|
|
* @param \CachetHQ\Cachet\Models\Subscription $subscription
|
|
*
|
|
* @return \Illuminate\Http\JsonResponse
|
|
*/
|
|
public function destroy(Subscription $subscription)
|
|
{
|
|
dispatch(new UnsubscribeSubscriptionCommand($subscription));
|
|
|
|
return $this->noContent();
|
|
}
|
|
}
|