PawelRoman

Results 14 issues of PawelRoman

Is it possible to configure token expiry time per app?

question

Reviewing djoser code, if I understand it correctly, the usage is "all or nothing". I mean, UserViewSet implements all "base" features and then is routed like so: `router.register("users", views.UserViewSet)` Which...

enhancement

All dynamoDB examples document the flow, where a context manager opens the resource (in fact it opens a client under the hood), then some calls are made, (such as get...

In django each unit test is wrapped in a database transaction. It means that any changes made during test (e.g. calling an endpoint which adds a new object) are rolled...

I have integrated the admin into my project. I was able to create first admin user with /admin/init and see the admin user in the database. When I go to...

Hi, I have a model where a PK is defined on an explicit Varchar field, like this ``` class MyModel(Table): identifier = columns.Varchar(length=64, primary_key=True) ..... other fields ..... ``` It's...

### Description Platform: Linux Mint 20.03 (ubuntu) NiceGUI 1.4.3 Steps to replicate: Save the code below as main.py and run `python main.py` ```py from nicegui import app, ui def app_startup():...

help wanted

I followed all instructions for fastapi-admin and created the first admin user. ![admin1](https://user-images.githubusercontent.com/8222737/208455257-835a9ed1-896c-43cd-924e-5f2e833073aa.png) Then I started the restful-admin locally. When I try logging in with the same username/password it's not...

Kaaengine build v. 0.11+75.gbc2555f Add Text node and on keyboard text event we try to update text node's text. When we do that, engine crashes with ``` Traceback (most recent...

1. Create a text node with some text, add it to scene. 2. Set node.text = "" # set to empty string Expected: text disappears Actual: nothing happens