FOSMessageBundle
FOSMessageBundle copied to clipboard
User-to-user messaging bundle for Symfony
Following the discussion of https://github.com/FriendsOfSymfony/FOSMessageBundle/pull/352 I revised the blocking `setUp()` method. I used a new method `setUpBeforeTest()` method and commented `setUp()`. I created the configuration for Github Actions so the...
The `getNbUnread()` of the Twig extension is marked as returning an integer. It is not the case when initialized. It should be enforced and tested.
What's the status of this bundle? Will it be updated to support [Popular/Latest Symfony version X]?
Hi, I'm considering to use this in a project, but my tech lead is not convinced, because at some point we'd like to update to SF5. Is it a major...
Travis check, seeing if we have failures
to avoid `Cannot check if an unsubmitted form is valid.` exception issue #347
According to MongoDB ODM 2.x, fieldName attribute has been renamed to field-name. This has been fixed. The File ThreadMetadata.mongodb.xml had an incorrect mapping. This has been fixed.
Deprecated call for Symfony 4.3 see: ``` The "Symfony\Component\Config\Definition\Builder\TreeBuilder::root()" method called for the "fos_message" configuration is deprecated since Symfony 4.3, pass the root name to the constructor instead. ```
Hi, sometimes I got an error saying: > Cannot check if an unsubmitted form is valid. Call Form::isSubmitted() before Form::isValid(). (from [here](https://github.com/symfony/symfony/blob/3a1d36102ffea8e18e0b461dbc7a0e2c53772ea0/src/Symfony/Component/Form/Form.php#L743)) Then, I checked [the handler](https://github.com/FriendsOfSymfony/FOSMessageBundle/blob/9afcc54dee459c44fd5d6fdd2d96872558c1ec8b/FormHandler/AbstractMessageFormHandler.php#L64) and indeed, `$form->isSubmitted()`...
it can actually be enabled by adding the following to the `fos_message` config in `services.yaml`: ```yaml new_thread_form: type: FOS\MessageBundle\FormType\NewThreadMultipleMessageFormType handler: fos_message.new_thread_multiple_form.handler model: FOS\MessageBundle\FormModel\NewThreadMultipleMessage name: message ``` looks experimental, needs revisiting...