communiteq
communiteq
TL;DR Not really The change does not break existing tests. There could be additional tests but I think those are out of scope for the change. Also, since the logic...
My point was in the second line of my comment. The code looks like this ``` def can_view_raw_email?(post) post && is_staff? end ``` So a test would look like this...
> The main reason why its good practice to disable / not support HEAD requests is around security. It's always good security practice to disable anything you don't use. For...
As a workaround, you can define this class and use it instead. ``` class AnswerConversationBufferMemory(ConversationBufferMemory): def save_context(self, inputs: Dict[str, Any], outputs: Dict[str, str]) -> None: return super(AnswerConversationBufferMemory, self).save_context(inputs,{'response': outputs['answer']}) ```
That is correct, we only support the 'stable' branch of Discourse, so the highest supported version is 1.2.4 (as can be seen in the README). Discourse does not have any...
No objections to a PR, although you might want to check out https://github.com/richp10/discourse-api-php which is already available at https://packagist.org/packages/richp10/discourse-api-php
As far as I remember, phpbb3 (until version 3.1*) uses the same password algorithm as Wordpress (called phpass), and it is covered by the check_wordpress code. On our first try...