Morgan Aubert
Morgan Aubert
Should we add a way to prevent users to submit too many posts in a given period?
First of all, thanks for this great shard! This Pull Request adds an integration for the [Marten web framework](https://github.com/martenframework/marten). I have been using raven.cr from quite some time for the...
# Description The Marten ORM presently allows the create of raw SQL queries for which the whole SQL statement must be provided and whose results are automatically mapped to model...
# Description Let's make it possible to generate new projects (or applications) that use the development version of Marten through the use of an `--edge` / `-e` option. When this...
# Description It appears trying to compile a Marten project in debug mode (with the `--debug` option) results in a compilation error. The problem might be on the Crystal compiler...
# Description Right now the way the `Marten::Middleware::AssetServing` middleware behaves can't be configured. This middleware hardcodes the max age of served assets (3600 seconds), and it is not possible to...
# Description Sometimes it is necessary to combine the results of two distinct [query sets](https://martenframework.com/docs/models-and-databases/queries). Presently it is not possible to do so without incurring two distinct SQL queries to...
# Description Presently, the Marten ORM allows to perform basic aggregation operations and get the result of these operations right away (for example through the use of the [`#minimum`](https://martenframework.com/docs/next/models-and-databases/reference/query-set#minimum), [`#maximum`](https://martenframework.com/docs/next/models-and-databases/reference/query-set#maximum),...
# Description In order to make it easier to implement specific templates with for loops, let's ensure that the `loop` contextual variable also provides `odd?` and `even?` attributes. For example:...