expressa icon indicating copy to clipboard operation
expressa copied to clipboard

API creation middleware with an admin interface

Results 29 expressa issues
Sort by recently updated
recently updated
newest added

it would be great to be able to define listners for a register and login request one such use case is to mange complex login scenarios such as social login,...

For `post`, `put` and `changed` requests it would be nice to pass the original document as a parameter to the listeners. Often i find myseld needing the original doc, mostly...

I have observed that when we change "password" from one browser in place of session expiration from another browser it just updates the password from another browser and the old...

enhancement

Attempt to fix #184 This is one way to resolve this issue. Store the timestamp of when the password was last updated in the token. This way, when password is...

I am able to update settings in the admin panel, and the `router.settings` is refreshed by virtue of the `changed` listener in `listeners.js` (PS there is a TODO on line...

The affected line prevented owners of docs from being changed. I understand it could be dangerous to simply allow owners to be changed so maybe being able to change owners...

I know expressa does have a memory cache for the storage types.. I have not tested used it or seen it used with anything other than the `roles` collection. I...

Expressa admin doesn't support all of the `json-editor` features, like `description` and `default` etc etc, which is fine but the problem is if you add them manually in the json,...

question

So for file loading, using the following works nicely, for images or other binary content ``` "media": { "binaryEncoding": "base64" }, ``` But what if my files are text based?...

admin

I am using the admin panel to upload media as it detailed in the `uploading-files.md` docs. My schema looks like this: ```json "media": { "additionalProperties": false, "properties": { "additional_pic_01": {...

admin