Innocent Bystander

Results 67 comments of Innocent Bystander

You can selectively block commands using the [deny tag prefix](https://github.com/hangoutsbot/hangoutsbot/wiki/Access-Control-with-Tags#explicit-command-denial) and a [wildcard user](https://github.com/hangoutsbot/hangoutsbot/wiki/Users-and-Conversations-Tagging#user-tag-priority). Admins have access to everything regardless, so you will need to modify `/bot help` and combine...

could it be a hidden non-space character that also got caught up in the copy-and-paste? it would be good if you can provide the actual example of the keyword you...

yes it is, thank you :) it's a useful skill so that you can do future enhancements as well

i concur with @pleasantone to modify `base_bot_request_handler.py`, specifically [`AsyncRequestHandler`](https://github.com/hangoutsbot/hangoutsbot/blob/staging/hangupsbot/sinks/base_bot_request_handler.py#L124) and to add to @MTRNord's comment, we may have to roll changes made from #641 into a unified config mechanism that...

I was thinking an even more conservative option by only making CORS support available when explicitly requested by config. We can encapsulate it into a single `allow_cors_origin` configuration command in...

I tend to do everything server-side so I'm actually OK leaving it as `*` and applying it across all sinks by default, since I just realised that's the current default...

quick comment: there isn't an official way yet since the reprocessor was only used in slack legacy and API. now would be a good time to figure out a pattern...

the context parameter itself is a kludge. the protobuf entity that we use for relaying the reprocessor id only seems to accept scalar values, in this case the reprocessor id...

further comment: what if you could relay before the broadcast? we do have a [`sending` handler](https://github.com/hangoutsbot/hangoutsbot/wiki/Plugin-Authoring-(2.4-and-above)#supported-eventshandlers) which catches outgoing message first before the bot sends it. it would more suitable...

types of messages: * user messages in a hangout * sending handler: NA, sent by other clients * allmessages handler: no metadata / standard non-bot event * relay: always *...