Robin De Schepper
Robin De Schepper
It's been a while that the eFeature documentation [here ](https://efel.readthedocs.io/en/latest/eFeatures.html) seems incomplete. Are there any plans of completing this guide? Currently I'm stuck trying to look through all of `efel.getFeatureNames()`...
Using an entity with a column like this: ``` @ManyToOne(() => Degree, { nullable: true }) @JoinColumn() parentDegree?: Degree; ``` yields the column name `parent_degree__id` instead of `parent_degree_id`
Using an entity with a ManyToMany relationship structured like this: ``` @ManyToMany(() => Company) @JoinTable({name: "companies_wishlist"}) @Expose({ name: "wishlist_companies" }) wishlistCompanies: Company[]; ``` causes (with logging turned on to see...
**Environment:** - Elements version: 7.2.0 **Steps to reproduce the problem:** 1. Include `https://cdn01.boxcdn.net/platform/elements/7.2.0/nl-NL/picker.css` as stylesheet 2. Include `https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/css/bootstrap.min.css` **What is the expected behavior? (Screenshots can be helpful here)** I expect...
Upon installation quite a few deprecated dependencies appear: ``` npm WARN deprecated [email protected]: this library is no longer supported npm WARN deprecated [email protected]: This version has been deprecated in accordance...
Currently the `Paginate` decorator does `(_data: unknown, ctx: ExecutionContext) => PaginateQuery`, but is encapsulated as a parameter decorator factory. However, when I'm unit testing, I haven't figured out how to...
This changeset implements the following syntactic changes: * Change `page` to `page[number]` * Change `limit` to `page[size]` * Change `sortBy` to `sort` * Change current syntax (`field:ASC/DESC`) to a comma...
Here's a write up of the discrepancies with the [spec](https://jsonapi.org/format/), and my proposed solutions. # Violations ## [Pagination](https://jsonapi.org/format/#fetching-pagination) JSON:API does not allow the use of non-family query parameters for implementation...
When passing additional, or misspelled, keyword arguments to `CORS`, and probably elsewhere, they are silently ignored. This means that a `CORS(app, rigins=["mydomain.com"], send_wildcard=True)` would produce false positive `*` wildcards for...