Vlad Frolov

Results 120 issues of Vlad Frolov

It is reported that `locations=('json', 'files')` in `@Namespace.parameters` decorator breaks Swagger config: ``` python @api.parameters( parameters.CreateTeamParameters(), locations=('json', 'files') ) def post(self, ...): ... ``` The Swagger config results in: ```...

bug
help wanted
tests needed

#26 showed that there might be a situation when all tests pass, the response is expected, but it was not explicitly covered with `@api.response()` decorator. I think we will need...

enhancement

- [ ] tests to auth module - [x] tests to users resources - [x] tests to teams resources (not 100%, but good coverage enough for now) - [ ]...

enhancement
tests needed

[RFC 6749 section 4.2](https://tools.ietf.org/html/rfc6749#section-4.2) This feature will require to have a page for authentication since we don't have cookie sessions on RESTful API by design, just like in #3.

enhancement
auth

[RFC 6749 section 4.1](https://tools.ietf.org/html/rfc6749#section-4.1) This is the `accessCode` flow type in OpenAPI (Swagger) Specification. This feature will require to have a page for authentication since we don't have cookie sessions...

enhancement
auth

Here is the reproduction: ```python import tbvaccine tbvaccine.add_hook(isolate=False) import dask def x(arg1=123): assert arg1 == 122, "qwe" if __name__ == '__main__': dask.delayed(x)().compute() ``` The error: ``` File "/tmp/env/lib/python3.5/site-packages/dask/async.py", line 272,...

I see that there is a way to manage headers, so it is possible to set a token manually, but it would be nice to have OAuth2 support out of...

bravado

Since Borsh is heavily focused on security, we should use all the available tooling to ensure that we catch as many corner cases as possible. [Miri](https://github.com/rust-lang/miri) is an interpreter for...

CI
housekeeping
security
testing
good first issue

We currently implicitly expect people to know how to build smart contracts in Rust for NEAR, and then they can hack around this code-base. I believe we should point people...

documentation
enhancement

Some prior context: https://github.com/near/NEPs/issues/85#issuecomment-1041515376 Wallet needs to get [FT Events](https://nomicon.io/Standards/FungibleToken/Event) support to properly catch mint and burn events (similarly to NFT support). Those are already implemented on the [Indexer for...