-
-
Notifications
You must be signed in to change notification settings - Fork 361
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
server: Properly declare negroni middleware (#200)
Previously, negroni.With was mistakenly used to add middleware onto the stack. The proper method however is negroni.Use. This patch fixes the use of negroni.With and resolves issues around logging and the decisions endpoint. Closes #199
- Loading branch information
Showing
15 changed files
with
702 additions
and
315 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,3 @@ | ||
vendor/ | ||
node_modules | ||
node_modules | ||
dist/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,22 +1,22 @@ | ||
--- | ||
name: Feature request | ||
about: Suggest an idea for this project | ||
|
||
--- | ||
|
||
**Is your feature request related to a problem? Please describe.** | ||
|
||
A clear and concise description of what the problem is. Ex. I'm always frustrated when [...] | ||
A clear and concise description of what the problem is. Ex. I'm always | ||
frustrated when [...] | ||
|
||
**Describe the solution you'd like** | ||
|
||
A clear and concise description of what you want to happen. | ||
|
||
**Describe alternatives you've considered** | ||
|
||
A clear and concise description of any alternative solutions or features you've considered. | ||
A clear and concise description of any alternative solutions or features you've | ||
considered. | ||
|
||
**Additional context** | ||
|
||
Add any other context or screenshots about the feature request here. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,8 +3,8 @@ name: Disclose (potential) security vulnerability | |
about: Disclose security vulnerabilities to [email protected] | ||
--- | ||
|
||
Please refrain from publishing (potential) security vulnerabilities publicly | ||
on the forums, the chat, or GitHub. | ||
Please refrain from publishing (potential) security vulnerabilities publicly on | ||
the forums, the chat, or GitHub. | ||
|
||
We describe how to disclose (potential) security vulnerabilities in our | ||
[Security Policy](SECURITY.md) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,10 @@ | ||
--- | ||
name: Support request | ||
about: Please use our forums (community.ory.sh) or the chat (ory.sh/chat) to ask for support | ||
|
||
about: | ||
Please use our forums (community.ory.sh) or the chat (ory.sh/chat) to ask for | ||
support | ||
--- | ||
|
||
Please use issues only to file potential bugs or request features. For everything else please go to | ||
the [ORY Community](https://community.ory.sh/) or join the [ORY Chat](https://www.ory.sh/chat). | ||
Please use issues only to file potential bugs or request features. For | ||
everything else please go to the [ORY Community](https://community.ory.sh/) or | ||
join the [ORY Chat](https://www.ory.sh/chat). |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -26,11 +26,15 @@ them, don't hesitate to ask. We're here to help! This is simply a reminder of wh | |
|
||
- [ ] I have read the [contributing guidelines](CONTRIBUTING.md) | ||
- [ ] I have read the [security policy](SECURITY.md) | ||
- [ ] I confirm that this pull request does not address a security vulnerability. If this pull request addresses a security | ||
vulnerability, I confirm that I got green light (please contact [[email protected]](mailto:[email protected])) from the maintainers to push the changes. | ||
- [ ] I confirm that this pull request does not address a security | ||
vulnerability. If this pull request addresses a security vulnerability, I | ||
confirm that I got green light (please contact | ||
[[email protected]](mailto:[email protected])) from the maintainers to push | ||
the changes. | ||
- [ ] I have added tests that prove my fix is effective or that my feature works | ||
- [ ] I have added necessary documentation within the code base (if appropriate) | ||
- [ ] I have documented my changes in the [developer guide](https://github.com/ory/docs) (if appropriate) | ||
- [ ] I have documented my changes in the | ||
[developer guide](https://github.com/ory/docs) (if appropriate) | ||
|
||
## Further comments | ||
|
||
|
Oops, something went wrong.