Sylwester Kardziejonek
Sylwester Kardziejonek
I did a comparisons between CodeMirror 5 and 6 on my iPhone and the keyboard suggestions work fine with v6. With v5 it's just a mess.
This could be also achieved with #416 from what I can see
@sergeynikiforov I'm not sure. What I would like to achieve is to use the default key if `user_id` is not passed. I wan't to control whether to use user based...
Does `CoreAPI` even support custom type definition? I know you can specify anything in the `field.type`. I think you would need to change `rest_framework_swagger.renderers.OpenAPICodec` so that the returned Swagger object...
@tomchristie - To give some background. What I was trying to achieve was a documentation of `profile` parameter on my endpoint, which is an embedded document with it's own schema....
@tomchristie I'm using Swagger UI, tough, when writing spec by hand I write it using API Blueprint (IMO easier to write and read than OpenAPI), then convert it to OpenAPI...
@kamilprusko wrote: > I suppose there should a "Desktop Integration" / "GNOME" section in the preferences window, but I don't want to bloat it... For now I'll keep it hidden...
I've implemented something like this based on the field overrides. ```python def get_annotated_by(cls, annotation_type) -> Mapping[str, gen.AttributeOverride]: ... class Person: last_name: Annotated[str, gen.override(rename="surname")] converter.register_structure_hook_factory( attrs.has, lambda cls: gen.make_dict_structure_fn(cls, converter, **get_annotated_by(cls,...