Hide features for non-admin users through plugin

tldr: I would like to hide certain features in the page & api backend for non-admin users.

For example,
I would like to show the list of liked users only for admin users and not for everyone. The count can be seen by everyone but not the list of users.

Of course this is just an example for my specific need. I am sure this feature will not enter in the core but how could I implement this as a plugin ? I would be interested to know about the api overrides (especially) & UI overrides through plugins.

Ti consiglio di leggere la meravigliosa serie di articoli sui plugin di @eviltrout, che inizia qui:

Dopo aver letto alcuni plugin ufficiali nella pagina GitHub di Discourse.

Poi passa in rassegna alcuni plugin nella categoria #customizzazione:plugin ed esaminane il codice sorgente.

Thanks @Falco.. Just want to quickly check if plugins can be used to control features in API as well ?

You can monkeypatch classes so yes. Some stuff is easier than others, tough.

Though I think this is simply overriding a widget, which shouldn’t be too bad to do.

Yeah, but if he wants to block this trough API too, it’s more works because the post_actions is used for more stuff. Doable, but a little more work.