Nikola

Results 6 issues of Nikola

I searched the docs but I couldnt find anything close to that. How can I add custom query param to the request ? I tried by setting up different middleware...

The problem is weird, the images are displayed nicely on the frontend of the website but on the admin page they are not displayed at all. > [8]=> array(25) {...

I have this piece of code ``` const express = require('express') const app = express() const { buildCheckFunction, validationResult } = require('express-validator/check'); const checkQuery = buildCheckFunction(['query']); app.get('/', [ checkQuery('id').isUUID() ],...

i: enhancement

Types created using type functions with nested props don't work correctly. ``` type CustomType = { bar: { color: Color, }, } type MyType1 = CustomType; type MyType2 = CustomType;...

I have a form which I want to validate on the client side, aswell as on the server side. The client side validation is handled by the `redux-form` package and...

Is there any way I can declare optional parameters in the url ? `-> (..) addGetRoute('products/(.*)/(.*)', function(){ $product = new Product(get_registry()); $product->getProducts(); }) (..) ` For this url I have...