simo
simo
Thanks for the workaround, let's keep this open for future reference :+1:
No, will add it in the next release.
There isn't an UI for this but you can workaround this by creating an empty folder and run the admin with this folder. After you enter your settings and the...
This isn't implemented yet, but thanks for reminding me anyway. Let's keep this open for now.
There is no option for that. The only way would be to intercept the execution via hook and modify the values on your own. If it's something really simple you...
Yes, through Javascript only. Take a look at this [example](https://github.com/simov/express-admin-examples/blob/master/config/custom/static/theme.js) and its [configuration](https://github.com/simov/express-admin-examples/blob/master/config/mysql/custom.json#L89-L101).
Unfortunately you can't change that through configuration. The easiest way would be to change this [line](https://github.com/simov/express-admin/blob/master/routes/auth.js#L18) to `return next();` because the `debug` flag is responsible for a few other things....
Yes, you can override these [styles](https://github.com/simov/express-admin/blob/master/public/express-admin.css#L18-L22).
Yes, and you can have multiple users registered to use the admin - check out this [comment](https://github.com/simov/express-admin/issues/29#issuecomment-30514629) Also if you are POSTing data to the server don't forget to add...
I can't tell you with certainty atm. Generally this is the [session middleware](https://github.com/expressjs/session) used in the admin. As for creating a table, and things of that nature, these will be...