# Dismiss Admin Noise!

**URL:** https://meta.discourse.org/t/dismiss-admin-noise/403729
**Category:** Theme component
**Tags:** notifications
**Created:** [May 24, 2026, 11:50pm UTC](https://meta.discourse.org/t/dismiss-admin-noise/403729 "2026-05-24T23:50:59Z")
**Posts on this page:** 1
**Showing post:** 3

<div class="post-metadata">

### Author: ![Lilly](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/lilly/32/575047_2.png) [@Lilly](https://meta.discourse.org/u/Lilly)
#### Post date: [May 25, 2026, 4:01pm UTC](https://meta.discourse.org/t/dismiss-admin-noise/403729/3 "2026-05-25T16:01:01Z")

</div>

btw, if a person wants to test this component’s settings without having to do the actual actions that trigger these notifications (and you have ssh access), you can use these commands in the rails console to trigger those respective event notifications (use the triggers applicable to your component’s settings):

```plaintext
cd /var/discourse
.launcher enter app
rails c

```

```rb
# find and set your user variable
u = User.find_by_username("YOUR ADMIN USERNAME")

# trigger: new features
Notification.create!(
  user: u,
  notification_type: Notification.types[:new_features],
  read: false,
  data: {}.to_json
)

# trigger: invitee accepted
Notification.create!(
  user: u,
  notification_type: Notification.types[:invitee_accepted],
  read: false,
  data: { display_username: "awesome_new_user" }.to_json
)

# trigger: group membership accepted
Notification.create!(
  user: u,
  notification_type: Notification.types[:membership_request_accepted],
  read: false,
  data: { group_name: "Trust_Level_4" }.to_json
)

# trigger: granted badge
Notification.create!(
  user: u,
  notification_type: Notification.types[:granted_badge],
  read: false,
  data: { badge_name: "Great Topic", badge_id: 10 }.to_json
)

# trigger: upcoming change promoted
Notification.create!(
  user: u,
  notification_type: Notification.types[:upcoming_change_automatically_promoted],
  read: false,
  data: { 
    upcoming_change_humanized_name: "Experimental CSS",
    upcoming_change_name: "experimental_css"
  }.to_json
)

# broadcast (Watch your browser in another window or tab when you hit enter!)
u.publish_notifications_state

```

best way to test is to disable the setting in the component you want to test and run the related rails trigger command, see the notification pop up, then enable the setting and do a hard refresh to see them disappear.

---

_[View the full topic](https://meta.discourse.org/t/dismiss-admin-noise/403729)._
