for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
class CertificatonAPI extends VolunteerAPI
{
public function __construct()
parent::__construct('certifications', 'certID');
}
protected function canUpdate($request, $entity)
if($this->isVolunteerAdmin($request))
return true;
return false;
protected function canDelete($request, $entity)
/* vim: set tabstop=4 shiftwidth=4 expandtab: */