3e1e0b604f
This adds the oauth2 provider `oidc`. It needs an additional argument, the OIDC discovery endpoint to figure out where the auth and token URLs are. Configuration is similar to setting up the Google Authentication with these changes: * `OAUTH2_PROVIDER = oidc` * `OAUTH2_OIDC_DISCOVERY_ENDPOINT = https://auth.exampe.org/discovery`
14 lines
663 B
Markdown
14 lines
663 B
Markdown
# Contributing
|
|
|
|
If you would like to contribute code to go-jose you can do so through GitHub by
|
|
forking the repository and sending a pull request.
|
|
|
|
When submitting code, please make every effort to follow existing conventions
|
|
and style in order to keep the code as readable as possible. Please also make
|
|
sure all tests pass by running `go test`, and format your code with `go fmt`.
|
|
We also recommend using `golint` and `errcheck`.
|
|
|
|
Before your code can be accepted into the project you must also sign the
|
|
[Individual Contributor License Agreement][1].
|
|
|
|
[1]: https://spreadsheets.google.com/spreadsheet/viewform?formkey=dDViT2xzUHAwRkI3X3k5Z0lQM091OGc6MQ&ndplr=1
|