# How to hide admins from /about page

**URL:** https://meta.discourse.org/t/how-to-hide-admins-from-about-page/43678
**Category:** Support
**Created:** [May 4, 2016, 5:41pm UTC](https://meta.discourse.org/t/how-to-hide-admins-from-about-page/43678 "2016-05-04T17:41:59Z")
**Posts on this page:** 1
**Showing post:** 2

<div class="post-metadata">

### Author: ![zogstrip](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/zogstrip/32/512781_2.png) [@zogstrip](https://meta.discourse.org/u/zogstrip)
#### Post date: [May 4, 2016, 6:06pm UTC](https://meta.discourse.org/t/how-to-hide-admins-from-about-page/43678/2 "2016-05-04T18:06:06Z")

</div>

Since we often have to be admin to diagnose issues or change settings on our customer’s Discourse, we decided to hide all our `@discourse.org` accounts from the admins lists. That way, we’re not polluting our customer’s admins lists.

We do this using a plugin that is automatically installed to all the Discourse we host and does something like

```ruby
after_initialize do

  add_to_serializer(:about, :admins) do
    object.admins.reject { |u| u.email =~ /@discourse\.org/i }
  end

end

```

---

_[View the full topic](https://meta.discourse.org/t/how-to-hide-admins-from-about-page/43678)._
