I added the sqlalchemy validators for the field types for create new project.
Is it ok like this? (If yes, I'll do the same with create new issue and so on.)
I had some problems with validating the create_readme field => should be boolean. While testing, even when I was passing non boolean value, no exception was raised. Then I figured out, that create_readme always switches to "False', which then passes as bool. Do you have any idea why this happens or should I investigate more?
The rest should be working, but since it's still not finished I was not running the tests.
Partly fixes #2485.
I added the sqlalchemy validators for the field types for
create new project.Is it ok like this? (If yes, I'll do the same with
create new issueand so on.)I had some problems with validating the
create_readmefield => should be boolean. While testing, even when I was passing non boolean value, no exception was raised. Then I figured out, thatcreate_readmealways switches to "False', which then passes as bool. Do you have any idea why this happens or should I investigate more?The rest should be working, but since it's still not finished I was not running the tests.