# Gebruikersstatus

**URL:** https://meta.discourse.org/t/user-status/240335
**Category:** Announcements
**Tags:** new-feature, user-status
**Created:** [4 oktober 2022 om 10:16 UTC](https://meta.discourse.org/t/user-status/240335 "2022-10-04T10:16:57Z")
**Posts on this page:** 18
**Page:** 2

<div class="post-metadata">

### Author: ![andrei](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/andrei/32/205142_2.png) [@andrei](https://meta.discourse.org/u/andrei)
#### Post date: [29 november 2022 om 14:02 UTC](https://meta.discourse.org/t/user-status/240335/46 "2022-11-29T14:02:15Z")

</div>

No, we don’t have one at the moment. I wonder what would be the use case for such a hook?

---

<div class="post-metadata">

### Author: ![mattdm](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/mattdm/32/216484_2.png) [@mattdm](https://meta.discourse.org/u/mattdm)
#### Post date: [29 november 2022 om 14:31 UTC](https://meta.discourse.org/t/user-status/240335/47 "2022-11-29T14:31:05Z")

</div>

When a user sets a status, that status could be propagated to other tools / websites in our system.

For example, [Fedora Packager Dashboard — mattdm](https://packager-dashboard.fedoraproject.org/dashboard?users=mattdm) could include when I’m on vacation, and perhaps even more usefully, since Fedora packages often have multiple maintainers, show me the status for co-maintainers, so I know who else is available (or not).

Or, a much more _meta_ but still very interesting-to-me case: we could award the [vacation badge](https://badges.fedoraproject.org/badge/vacation) when someone sets their status appropriately (on [our own Badges system](https://badges.fedoraproject.org/), not the internal Discourse one\[1\]).

* * *

1. although actually I’m [bridging that too](https://discussion.fedoraproject.org/badges)

---

<div class="post-metadata">

### Author: ![mcdanlj](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/mcdanlj/32/131829_2.png) [@mcdanlj](https://meta.discourse.org/u/mcdanlj)
#### Post date: [6 januari 2023 om 21:23 UTC](https://meta.discourse.org/t/user-status/240335/48 "2023-01-06T21:23:42Z")

</div>

One of my concerns with using this is that the headline use case is a vacation notification. I’d think that plenty of folks would want to share that kind of status with people they trust more, but not post it on the internet broadly.

Would it make sense to optionally limit status to be visible only to members of a configurable group, which could be set to trust\_level\_n for some value of n, or to staff, or to some other group that makes sense for a particular site?

---

<div class="post-metadata">

### Author: ![Planktro\_Neum](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/planktro_neum/32/221598_2.png) [@Planktro\_Neum](https://meta.discourse.org/u/Planktro_Neum)
#### Post date: [14 januari 2023 om 12:35 UTC](https://meta.discourse.org/t/user-status/240335/49 "2023-01-14T12:35:34Z")

</div>

Hi there, ive just enabled this in our community, it works ace hoever is there a way to stop certain words being used on this as i can enter any text I wish. Is there something i have missed.. thanks

---

<div class="post-metadata">

### Author: ![JammyDodger](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/jammydodger/32/254611_2.png) [@JammyDodger](https://meta.discourse.org/u/JammyDodger)
#### Post date: [14 januari 2023 om 12:54 UTC](https://meta.discourse.org/t/user-status/240335/50 "2023-01-14T12:54:44Z")

</div>

I’m afraid not currently. It has been suggested to run it through Watched Words, but that hasn’t been built yet. At the moment I use a data-explorer query to give an overview, and couple that with the ability to remove statuses from the user’s Preference/Account page, if that’s any help?

---

<div class="post-metadata">

### Author: ![Planktro\_Neum](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/planktro_neum/32/221598_2.png) [@Planktro\_Neum](https://meta.discourse.org/u/Planktro_Neum)
#### Post date: [14 januari 2023 om 13:07 UTC](https://meta.discourse.org/t/user-status/240335/52 "2023-01-14T13:07:47Z")

</div>

Appreciate the reply. Is that way you said easy to implement or a pain. If not i can just keep an eye on what people write.

Again thankyou

---

<div class="post-metadata">

### Author: ![JammyDodger](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/jammydodger/32/254611_2.png) [@JammyDodger](https://meta.discourse.org/u/JammyDodger)
#### Post date: [14 januari 2023 om 13:22 UTC](https://meta.discourse.org/t/user-status/240335/53 "2023-01-14T13:22:55Z")

</div>

As long as you have the [data-explorer](https://meta.discourse.org/t/discourse-data-explorer/32566) plugin it’s pretty simple. 👍 (you just have to remember to run it)

The simplest query would be:

```sql

SELECT *
FROM user_statuses
ORDER BY set_at DESC

```

Or you could have a swisher one with a direct link to the user’s Preferences/Account page. eg:

```sql

SELECT us.user_id,
       us.emoji, 
       us.description,
       'https://meta.discourse.org/u/' || u.username || '/preferences/account' AS preferences_account_url
FROM user_statuses us
JOIN users u ON u.id = us.user_id
ORDER BY set_at DESC

```

---

<div class="post-metadata">

### Author: ![Richie](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/richie/32/115110_2.png) [@Richie](https://meta.discourse.org/u/Richie)
#### Post date: [20 maart 2023 om 21:55 UTC](https://meta.discourse.org/t/user-status/240335/55 "2023-03-20T21:55:02Z")

</div>

We’re a ~~_bit_~~ lot late to the status-party and have only just enabled this today.

On the settings, can I ask re:

> (experimental) Allow users to set custom status message (emoji + description).

This has been “experimental” for five months, are there risks attached to us enabling this in our production environment? When will it move from experimental to stable? 🤔

> [@Canapin](#):
>
> I remember a similar feature, via a plugin, which allowed you to set hours of availability, It’s helpful on forums where you interact with people during their working hours.

And this would be a great addition 😊

---

<div class="post-metadata">

### Author: ![mcwumbly](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/mcwumbly/32/103861_2.png) [@mcwumbly](https://meta.discourse.org/u/mcwumbly)
#### Post date: [21 maart 2023 om 18:07 UTC](https://meta.discourse.org/t/user-status/240335/56 "2023-03-21T18:07:37Z")

</div>

> [@Richie](#):
>
> This has been “experimental” for five months, are there risks attached to us enabling this in our production environment? When will it move from experimental to stable? 🤔

It’s safe to run in a production environment. We labeled it experimental initially as we were making many changes to it. Things have settled down a fair bit now with the feature, so I think we could probably take that label off at this time.

---

<div class="post-metadata">

### Author: ![Richie](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/richie/32/115110_2.png) [@Richie](https://meta.discourse.org/u/Richie)
#### Post date: [21 maart 2023 om 19:20 UTC](https://meta.discourse.org/t/user-status/240335/57 "2023-03-21T19:20:43Z")

</div>

Thanks for the assurances Dave @mcwumbly😃

---

<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: [28 maart 2023 om 22:22 UTC](https://meta.discourse.org/t/user-status/240335/58 "2023-03-28T22:22:52Z")

</div>

i love this feature but only want to enable it for our staff - can we restrict it to groups? i know many of our users would likely want to abuse this feature, or at least use it in a way not intended.

---

<div class="post-metadata">

### Author: ![JammyDodger](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/jammydodger/32/254611_2.png) [@JammyDodger](https://meta.discourse.org/u/JammyDodger)
#### Post date: [1 april 2023 om 14:04 UTC](https://meta.discourse.org/t/user-status/240335/59 "2023-04-01T14:04:37Z")

</div>

11 posts were split to a new topic: [Creating a component to staff-limit user status](https://meta.discourse.org/t/creating-a-component-to-staff-limit-user-status/260214)

---

<div class="post-metadata">

### Author: ![JammyDodger](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/jammydodger/32/254611_2.png) [@JammyDodger](https://meta.discourse.org/u/JammyDodger)
#### Post date: [31 augustus 2023 om 03:58 UTC](https://meta.discourse.org/t/user-status/240335/67 "2023-08-31T03:58:06Z")

</div>

> [@andrei](#):
>
> We’re also enabling the feature here on Meta, so you can go ahead and try it right now.

Just a small update on this, the trial on Meta has concluded, but you can still test this feature out on [try.discourse.org](http://try.discourse.org). 👍

---

<div class="post-metadata">

### Author: ![darkpixlz](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/darkpixlz/32/549896_2.png) [@darkpixlz](https://meta.discourse.org/u/darkpixlz)
#### Post date: [31 augustus 2023 om 15:03 UTC](https://meta.discourse.org/t/user-status/240335/68 "2023-08-31T15:03:47Z")

</div>

> [@JammyDodger](#):
>
> the trial on Meta has concluded,

Just wondering, if this is becoming an official feature, why is it being disabled in Meta?

---

<div class="post-metadata">

### Author: ![JammyDodger](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/jammydodger/32/254611_2.png) [@JammyDodger](https://meta.discourse.org/u/JammyDodger)
#### Post date: [31 augustus 2023 om 15:14 UTC](https://meta.discourse.org/t/user-status/240335/69 "2023-08-31T15:14:07Z")

</div>

We don’t have all the features enabled on Meta, only the ones that best serve us. I think the user status is really good for sites where needing to know what other people are up to is more important. On here they were mainly being used as signatures, which isn’t something we want to encourage (other sites may really like that element to them though).

---

<div class="post-metadata">

### Author: ![hello-smile6](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/hello-smile6/32/304628_2.png) [@hello-smile6](https://meta.discourse.org/u/hello-smile6)
#### Post date: [31 augustus 2023 om 15:25 UTC](https://meta.discourse.org/t/user-status/240335/71 "2023-08-31T15:25:33Z")

</div>

> [@JammyDodger](#):
>
> On here they were mainly being used as signatures, which isn’t something we want to encourage

On a forum I help moderate, statuses are often used for things like staff jokes (e.g. me “eating production”, and @Firepup650 “breaking production” (just to give an unusual example of how they might be used).

---

<div class="post-metadata">

### Author: ![tobiaseigen](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/tobiaseigen/32/539204_2.png) [@tobiaseigen](https://meta.discourse.org/u/tobiaseigen)
#### Post date: [12 mei 2025 om 23:42 UTC](https://meta.discourse.org/t/user-status/240335/72 "2025-05-12T23:42:36Z")

</div>

A post was split to a new topic: [Feature request: when setting user status, provide quick list of “last 5 user statuses”](https://meta.discourse.org/t/feature-request-when-setting-user-status-provide-quick-list-of-last-5-user-statuses/365810)

---

<div class="post-metadata">

### Author: ![tobiaseigen](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/tobiaseigen/32/539204_2.png) [@tobiaseigen](https://meta.discourse.org/u/tobiaseigen)
#### Post date: [12 mei 2025 om 23:42 UTC](https://meta.discourse.org/t/user-status/240335/76 "2025-05-12T23:42:59Z")

</div>



[Vorige pagina](https://meta.discourse.org/t/user-status/240335.md?page=1)
