You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This bundles up a handful of small changes that makes the application easier to build and run.
* Warning hunt to clean up some existing warnings that have crept in.
* Adds AdminList configuration option, a comma-separated list of emails that are admin accounts
* This partially implements #4 but the actual admin-y pages need to be added to complete it.
* Adds unit tests for AdminList related functions
* Extraneous forward slashes are dropped from the end of URL lookups, making #6 easier to implement
* Fix the dockerfile to use the right sdk image for building.
* Fix the default okta API urls.
Introduce a feature for URL templates. This is akin to URL rewrite modules.
Currently the format of a link is go/, which is a static redirect to a specific URL.
Modify this format to allow for go//, which will then take the and inject it into the URL in the appropriate location.
Example:
go/jira/JIRAID
redirects to
https://jira.somecompany.com/browse/{JIRAID}
Navigating the browser to
http://go/jira/JIRA-53
would redirect tohttps://jira.somecompany.com/browse/JIRA-53
This is obviously a hilarious phishing opportunity which drives home the idea that this should be run only internally.
The text was updated successfully, but these errors were encountered: