Aquib Baig
Aquib Baig
Hi, @medkarim-rebey. I have used this bundle in my GSoC project and I'm ready to help you out here. You can see an example `.html.twig` files inside your **vendor/mgilet/notification-bundle/Resources/views** directory,...
`{{ mgilet_notification_render(app.user) }}` is a Twig helper which can be used as a templating expression in your twig files. You can hop over to `vendor/mgilet/notification-bundle/Twig/NotificationExtension.php` and check the **getFunctions** and...
Hello, I tried overriding the existing `Notifications` entity with a new class in my `src/Entity` as mentioned in the docs. And the table also got updated to show my latest...
So, it worked because you have to create an Instance of the new overridden entity rather than creating the other entity. That fixed it for me
Hi @marcin-dorosiewicz, you can follow up to **Step No 2** [here](https://github.com/maximilienGilet/notification-bundle/issues/55#issuecomment-498922481). After that in the controller use dependency injection to get the overridden notification class. Create an instance of the...
Click [on this link to go to Docusaurus implementation for Bench routes web](https://github.com/zairza-cetb/bench-routes-web)
Hey @tasneemkoushar, can you edit the commit messages to a meaningful description using `git commit --amend`, also try to squash these commits as one since these are minor fixes only
@tasneemkoushar I just noticed that there are 2 open PRs for the same fix. can you please close one of those and re-request a review? Thanks!
See [this reference](https://golang.org/pkg/compress/bzip2/)
@Harkishen-Singh an important thing is to decide is that when are we going to compress the files, on each iteration or after a certain time using some job scheduler. Mostly,...