-
Notifications
You must be signed in to change notification settings - Fork 11k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Create room permissions for read-only / speak #825
Comments
1+. Read Only Channels: Useful for Channel titles like "Full Manual", "Read Me First", "Help", "Quick Start", "Instructions", Company Info. Also for feeds like "Stock Market Ticker", ... |
Hi everyone, any news about this??? |
1+, or any way to transform all users in the room to "MUTE" |
This functionality is holding back the implementation in my company!!! |
@mguspero I'm sorry to hear this. If you would like it built sooner, you are more then welcome to make the changes and open a pull request. We will gladly accept it. Currently we have other things we are working on. This is an open source project, so we get to things as we have time. 😄 |
@mguspero you are also invited to post a bounty on this. This way you may encourage other developers to take this issue and get it merged, while making a few bucks out of it. |
@marceloschmidt Sorry if this is a dumb question, I'm new to this. Should bounties appear automatically in the GitHub Issue comments? Doesn't look like it... This issue now has a bounty on it - https://www.bountysource.com/issues/26744641-create-room-permissions-for-read-only-speak |
Read-only channel setup should also include:
|
Have any progress been done regarding the readonly channels? |
Not yet @lunitic :( |
While waiting for Read Only channels to become officially supported, is it possible to set up a default channel, then create a bot or some other API implementation that can auto-mute every new user that registers in the chat service and is enrolled into that channel? That would effectively create a read-only channel that all users would be subscribed to, right? |
@RichardFoxworthy that sounds like a very plausible solution. We have a way for the bot to call methods on the server. So you would just need to give the bot user the privileges required to mute. Also possibly would need the bot to be able to subscribe to the channels user list so it can see when people are added. A functionality we don't currently have. But wouldn't be too complicated to add. |
Hey @geekgonecrazy that sounds hopeful - could you point me toward any doc or example of how to get a bot to call methods on server? I already have a Hubot script that can detect when a new user joins the channel, and send them a welcome message. I am thinking I could extend this functionality to also /mute each new user in the default 'Announcements' channel that I want to support. |
@RichardFoxworthy You can call methods on Rocket.Chat from the bot like this:
so something like this:
|
I think we can break the problem to 2 steps to achieve the intended result.
|
@insidesmart sounds about right. After adding the permission it would be a matter of essentially doing exactly what you just said 👍 |
Hey, just a ping that we (@4thParty) are addressing this functionality by building an announcements bot for our Rocket.Chat instance. It's not exactly as described in this issue, but will allow us to send one-way messages via a bot to target users/groups. Sending DMs stops users from replying on mass and polluting public channels. We'll control access to the bot using a privileged room where user can tell it to send specific messages, but outside that room it won't work. I've created a hubot receiver middleware that partially solves the problem by ignoring any direct message replies to the bot. https://github.com/timkinnane/hubot-rocketchat-ignore-direct |
Hi everybody, do you have any news for this??? The one way DM for team leaders to users or read only rooms ?? Thanks & Regards! |
Is there a way for the people in the read-only channel to react or acknowledge with an emoji in the read only channel? That's the only missing feature for these read-only channels. |
@timkinnane did your guys delivered your suggested implementation? I'd be interested on seen it. |
@engelgabriel not really, sorry to disappoint :P We worked with @alexbrazier to align his PR with some of our suggestions, which is what made it into core. We haven't yet followed up the idea of muting types of system messages. I noticed that there's settings to disable room join/leave messages globally, but I've considered that could be bad UX because users may be unaware of who is listening (or not) in channels if people can silently join and leave. It would be nice to disable some other notification messages like room setting changes (topic changes etc), as they can clutter a room, but its not critical. As a temporary hack, I've actually written a command line maintenance tool, it provisions our instances, creating rooms, adding users, setting topics etc, then cleans up after itself deleting all system notices straight from mongo - leaving a clean message history for new users. The query for that is:
As you can see there's some inconsistency in the creation of different types of system notices, I've got #4016 on my radar as part of this problem too. Before adding controls for individual message types, it would be good to bring the outliers in line, making it possible to easily query all system message types without missing anything. |
…178a9a [Upstream Catchup] Merge RC:master to develop_pwa
Want to back this issue? Post a bounty on it! We accept bounties via Bountysource.
The text was updated successfully, but these errors were encountered: