Skip to content

Commit 8d2e2f2

Browse files
committed
Update import paths
1 parent 0ab40e4 commit 8d2e2f2

63 files changed

Lines changed: 274 additions & 274 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -452,5 +452,5 @@ the type in the attribute map matches what's in the struct before assignment.
452452
### Changed
453453
This breaking change allows multiple sites running off the same code base to each use different configurations of Authboss. To migrate
454454
your code simply use authboss.New() to get an instance of Authboss and all the old things that used to be in the authboss package are
455-
now there. See [this commit to the sample](https://github.com/volatiletech/authboss-sample/commit/eea55fc3b03855d4e9fb63577d72ce8ff0cd4079)
455+
now there. See [this commit to the sample](https://github.com/aarondl/authboss-sample/commit/eea55fc3b03855d4e9fb63577d72ce8ff0cd4079)
456456
to see precisely how to make these changes.

README.md

Lines changed: 99 additions & 99 deletions
Large diffs are not rendered by default.

auth/auth.go

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

8-
"github.com/volatiletech/authboss/v3"
8+
"github.com/aarondl/authboss/v3"
99
)
1010

1111
const (

auth/auth_test.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@ import (
55
"net/http/httptest"
66
"testing"
77

8-
"github.com/volatiletech/authboss/v3"
9-
"github.com/volatiletech/authboss/v3/mocks"
8+
"github.com/aarondl/authboss/v3"
9+
"github.com/aarondl/authboss/v3/mocks"
1010
)
1111

1212
func TestAuthInit(t *testing.T) {

confirm/confirm.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ import (
1414
"path"
1515

1616
"github.com/friendsofgo/errors"
17-
"github.com/volatiletech/authboss/v3"
17+
"github.com/aarondl/authboss/v3"
1818
)
1919

2020
const (

confirm/confirm_test.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@ import (
1010
"net/http/httptest"
1111
"testing"
1212

13-
"github.com/volatiletech/authboss/v3"
14-
"github.com/volatiletech/authboss/v3/mocks"
13+
"github.com/aarondl/authboss/v3"
14+
"github.com/aarondl/authboss/v3/mocks"
1515
)
1616

1717
func TestInit(t *testing.T) {

defaults/defaults.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ package defaults
1010
import (
1111
"os"
1212

13-
"github.com/volatiletech/authboss/v3"
13+
"github.com/aarondl/authboss/v3"
1414
)
1515

1616
// SetCore creates instances of all the default pieces

defaults/defaults_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ package defaults
33
import (
44
"testing"
55

6-
"github.com/volatiletech/authboss/v3"
6+
"github.com/aarondl/authboss/v3"
77
)
88

99
func TestSetCore(t *testing.T) {

defaults/error_handler.go

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

7-
"github.com/volatiletech/authboss/v3"
7+
"github.com/aarondl/authboss/v3"
88
)
99

1010
// ErrorHandler wraps http handlers with errors with itself

defaults/log_mailer.go

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

8-
"github.com/volatiletech/authboss/v3"
8+
"github.com/aarondl/authboss/v3"
99
)
1010

1111
// LogMailer logs e-mails instead of sending them.

0 commit comments

Comments
 (0)