Gabriel V.
Gabriel V.
It seems the activity on this repo, and especially on open issues has progressively waned in 2019 and 2020. The most conspicuous outstanding issue (IMHO) is #412, plus some other...
Hello, this library looks very interesting. I could not find in the wiki whether it supports record-like shapes, like those from graphviz mentioned [here](https://graphviz.gitlab.io/_pages/Gallery/directed/datastruct.html) and [here](https://emden.github.io/_pages/doc/info/shapes.html#record), and what graphviz calls...
Fixes #744 . This PR moves the previously static `GetOAuth*` methods into `Client`'s method set. This permits to use the configurable API endpoint instead of the global constant, and the...
In version `v0.4.0` I used to be able to mock requests to GetOAuth* methods by overriding the `SLACK_API` variable: `slack.SLACK_API = "some-test-url"` Now this isn't possible anymore, because these methods...
Not sure if I'm looking at this correctly. Let's say I have a cookie store `"github.com/gin-contrib/sessions/cookie".NewStore(...)` and I set some options on it with `Options()`. The options are set to...
Fixed test cases to use maven resources folder structure. Changed XMLFormatter spacing characters from " " (4 spaces) to "\t"
## Description This PR adds the `condition` validation rule. It allows to apply an arbitrary rule to a field value depending on another field value. ## Test Case After: [JSFiddle](https://jsfiddle.net/mt3oqzyn/)...
Can I set a limit to the maximum number of tokens allowed in a request? I.e. once the lexer knows the token count, if `count > N` fail the request.
We have some calls to this method `func (t TokenService) Create(card Card) (*TokenResponse, error)` which suddenly fail with the following error: ``` { "error": { "code": "unsafe_credit_card_param", "message": "Sending credit...
For example the signature of `Rect` is: ``` Rect(x int, y int, w int, h int, s ...string) ``` This function, like all other ones, declare `int` as parameter type....