Browse Source

fixed broken CI build

dependabot/npm_and_yarn/web/prismjs-1.21.0
Schmitt, Max 8 years ago
parent
commit
95a2a1707d
  1. 4
      README.md
  2. 2
      handlers/handlers.go

4
README.md

@ -12,7 +12,7 @@
- URL Shortening - URL Shortening
- Visitor Counting - Visitor Counting
- Expireable Links - Expirable Links
- URL deletion - URL deletion
- Authorization System via OAuth 2.0 from Google (more providers following) - Authorization System via OAuth 2.0 from Google (more providers following)
- High performance database with [bolt](https://github.com/boltdb/bolt) - High performance database with [bolt](https://github.com/boltdb/bolt)
@ -31,7 +31,7 @@ TODO
## Configuration ## Configuration
The configuration is a JSON file, an example is located [here](build/config.json). If your editor supports intellisense by using a schema (e.g. [VS Code](https://github.com/Microsoft/vscode)) then you can simply press space for auto completion. The config parameters should be really selfexplaning, but [here](build/schema.md) is a detailed description for all of these: The configuration is a JSON file, an example is located [here](build/config.json). If your editor supports intellisense by using a schema (e.g. [VS Code](https://github.com/Microsoft/vscode)) then you can simply press space for auto completion. The config parameters should be really self explaining, but [here](build/schema.md) is a detailed description for all of these:
## OAuth ## OAuth

2
handlers/handlers.go

@ -72,7 +72,7 @@ func (h *Handler) checkIfSecretExist() error {
} }
func (h *Handler) setHandlers() error { func (h *Handler) setHandlers() error {
if !h.config.EnableGinDebugMode { if !h.config.EnableDebugMode {
gin.SetMode(gin.ReleaseMode) gin.SetMode(gin.ReleaseMode)
} }
protected := h.engine.Group("/api/v1/protected") protected := h.engine.Group("/api/v1/protected")

Loading…
Cancel
Save