recursivetree

Results 20 comments of recursivetree

it is easier sure, but you never know how big the browser will be. Depending on if it is a smartphone or desktop, the possible maximum length can be different....

that's actually a quiet important bug as it makes the dogma endpoints nearly useless as of right now, both for dogma engines and also only for showing which stats and...

Loyalty points have been added. I think this can be closed

https://github.com/eveseat/web/pull/657 should fix this. The problem is actually much simpler than I expected since refresh_tokens are soft deleted, sorry @Sjolus for having you open an issue

Until this feature request gets implemented, you can include the filter for your `role a` together with the other conditions in your filter for the `Low level SP Recruit`. It...

1. Using mysql is not officially supported. SeAT is designed for MariaDB and PostgreSQL. That being said, it will probably also work with mysql, but you might need to tweak...

I'm in favor of implementing this, it seems like a nice addition. seat-alliance-industry can already do it: https://github.com/recursivetree/seat-alliance-industry/blob/master/src/Notifications/OrderNotificationSlack.php#L29-L41 The most difficult question is how to implement it: We don't have...

Yes, that's probably the best approach, but the thing is, AbstractNotification doesn't have any hook to inject the ping into the `SlackMessage`. This means we'd have to modify every single...

Maybe what we could do is to implement a `toSlack()`method in seat 5's `AbstractSlackNotification` and require an abstract `populateMessage` method that the individual messages implement. That way, `toSlack()` in `AbstractSlackNotification`...

I decided to go the route of updating https://github.com/eveseat/notifications/pull/60 to seat 5 and then implementing notifications on top of it: https://github.com/eveseat/notifications/pull/81