Follow

@realcaseyrollins I suppose you could block the necessary API call at the server level. Mastodon uses nginx, so you would want something like the following:

```
location /api/v1/statuses {
if ($request_method = POST ) {
return 403;
}
}
```

Sign in to participate in the conversation
Qoto Mastodon

QOTO: Question Others to Teach Ourselves
An inclusive, Academic Freedom, instance
All cultures welcome.
Hate speech and harassment strictly forbidden.