123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051 |
- <?php
- if (!defined('GNUSOCIAL')) { exit(1); }
- class SilenceAction extends ProfileFormAction
- {
- function handlePost()
- {
- assert($this->scoped instanceof Profile);
- assert($this->profile instanceof Profile);
- $this->profile->silenceAs($this->scoped);
- }
- }
|