15 lines
287 B
PHP
15 lines
287 B
PHP
<?php
|
|
require_once('models/Parachute.php');
|
|
|
|
use models\Parachute;
|
|
|
|
class ParachuteController extends BaseAuthedController
|
|
{
|
|
public function parachuteList(){
|
|
$list = Parachute::getMyParachute();
|
|
$this->_rspData(array(
|
|
'data' => $list
|
|
));
|
|
}
|
|
|
|
} |