IanM
IanM
@sorinsarca any updates or further thoughts on this? I understand your comments in regards to `Carbon`, but I can confirm that the change proposed here does resolve the issues @iPurpl3x...
> Doesn't laravel dispatch events when the scheduled tasks run? It does, `ScheduledTaskStarting`, `ScheduledTaskFinished` and `ScheduledTaskFailed`, which indeed could be used for a more detailed insight into scheduled tasks for...
> Would it be worth adding warning icons for inactive or never run, warning of the potential consequences? Yeah, I think that's a good call 👍
In order to maintain a consistent look, how about introducing an additional status for the scheduler element - `Not required`, which will be displayed when there are no tasks registered?...
> I am starting to like this a lot. I also think it suffices for a first version, but I also think we need to make things more idiot proof...
Hey @tyler71 thanks for the report. I'll take a look at this, and see what we can do with these permissions. Something tells me I've come across this scenario before...
@SychO9 this relates to notifications generated via `flarum/subscriptions`, rather than the regular `flarum/mentions` notification. I've just replicated with `1.6-dev`: ``` [2022-11-05 08:12:22] flarum.INFO: Message-ID: Date: Sat, 05 Nov 2022 08:12:22...
Extension load order also has an impact here. - `mentions` before `subscriptions` = no notification - `subscriptions` before `mentions` = notification, but with `deleted`/`unknown` rendered for the user/post mention. I...
What is `emojifiedContentHtml` and where does that come from? At first glance this appears to be an issue stemming from another extension
Take the following example ```php (new Extend\Settings()) ->serializeToForum('someAttr', 'someKey', null, 'myDefault') ``` Would now have to become ```php (new Extend\Settings()) ->default('someKey', 'myDefault') ->serializeToForum('someAttr', 'someKey', null) ``` That feels the long...