Skip to content
This repository was archived by the owner on Jan 30, 2024. It is now read-only.

Commit fdfba73

Browse files
author
Ricco Førgaard
committed
Updated imports
1 parent c97f99b commit fdfba73

13 files changed

+14
-14
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ to validate accounts by email, domain or group.
1515

1616
## Installation
1717

18-
1. Download [Prebuilt Binary](https://github.com/bitly/oauth2_proxy/releases) (current release is `v2.2`) or build with `$ go get github.com/bitly/oauth2_proxy` which will put the binary in `$GOROOT/bin`
18+
1. Download [Prebuilt Binary](https://github.com/vimond/oauth2_proxy/releases) (current release is `v2.2`) or build with `$ go get github.com/bitly/oauth2_proxy` which will put the binary in `$GOROOT/bin`
1919
Prebuilt binaries can be validated by extracting the file and verifying it against the `sha256sum.txt` checksum file provided for each release starting with version `v2.3`.
2020
```
2121
sha256sum -c sha256sum.txt 2>&1 | grep OK

oauthproxy.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,9 @@ import (
1414
"strings"
1515
"time"
1616

17-
"github.com/bitly/oauth2_proxy/cookie"
18-
"github.com/bitly/oauth2_proxy/providers"
1917
"github.com/mbland/hmacauth"
18+
"github.com/vimond/oauth2_proxy/cookie"
19+
"github.com/vimond/oauth2_proxy/providers"
2020
)
2121

2222
const SignatureHeader = "GAP-Signature"

oauthproxy_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,9 @@ import (
1515
"testing"
1616
"time"
1717

18-
"github.com/bitly/oauth2_proxy/providers"
1918
"github.com/mbland/hmacauth"
2019
"github.com/stretchr/testify/assert"
20+
"github.com/vimond/oauth2_proxy/providers"
2121
)
2222

2323
func init() {

options.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,9 @@ import (
1313
"strings"
1414
"time"
1515

16-
"github.com/bitly/oauth2_proxy/providers"
1716
oidc "github.com/coreos/go-oidc"
1817
"github.com/mbland/hmacauth"
18+
"github.com/vimond/oauth2_proxy/providers"
1919
)
2020

2121
// Configuration Options that can be set by Command Line Flag, or Config File

providers/azure.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import (
44
"errors"
55
"fmt"
66
"github.com/bitly/go-simplejson"
7-
"github.com/bitly/oauth2_proxy/api"
7+
"github.com/vimond/oauth2_proxy/api"
88
"log"
99
"net/http"
1010
"net/url"

providers/facebook.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import (
66
"net/http"
77
"net/url"
88

9-
"github.com/bitly/oauth2_proxy/api"
9+
"github.com/vimond/oauth2_proxy/api"
1010
)
1111

1212
type FacebookProvider struct {

providers/gitlab.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import (
55
"net/http"
66
"net/url"
77

8-
"github.com/bitly/oauth2_proxy/api"
8+
"github.com/vimond/oauth2_proxy/api"
99
)
1010

1111
type GitLabProvider struct {

providers/internal_util.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import (
66
"net/http"
77
"net/url"
88

9-
"github.com/bitly/oauth2_proxy/api"
9+
"github.com/vimond/oauth2_proxy/api"
1010
)
1111

1212
// stripToken is a helper function to obfuscate "access_token"

providers/linkedin.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import (
66
"net/http"
77
"net/url"
88

9-
"github.com/bitly/oauth2_proxy/api"
9+
"github.com/vimond/oauth2_proxy/api"
1010
)
1111

1212
type LinkedInProvider struct {

providers/provider_default.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ import (
99
"net/http"
1010
"net/url"
1111

12-
"github.com/bitly/oauth2_proxy/cookie"
12+
"github.com/vimond/oauth2_proxy/cookie"
1313
)
1414

1515
func (p *ProviderData) Redeem(redirectURL, code string) (s *SessionState, err error) {

0 commit comments

Comments
 (0)