Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
MIT License

Copyright (c) 2020-2022 SIL International
Copyright (c) 2020-2025 SIL Global

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
module github.com/silinternational/serverless-mfa-api-go
module github.com/sil-org/serverless-mfa-api-go

go 1.24

Expand Down
4 changes: 2 additions & 2 deletions lambda/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@ import (
"github.com/getsentry/sentry-go"
"github.com/kelseyhightower/envconfig"

mfa "github.com/silinternational/serverless-mfa-api-go"
"github.com/silinternational/serverless-mfa-api-go/router"
mfa "github.com/sil-org/serverless-mfa-api-go"
"github.com/sil-org/serverless-mfa-api-go/router"
)

var envConfig mfa.EnvConfig
Expand Down
2 changes: 1 addition & 1 deletion router/middleware.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import (
"net/http"
"strings"

mfa "github.com/silinternational/serverless-mfa-api-go"
mfa "github.com/sil-org/serverless-mfa-api-go"
)

// authenticationMiddleware gets API key information from request headers and validates the key/signature
Expand Down
2 changes: 1 addition & 1 deletion router/router.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package router
import (
"net/http"

mfa "github.com/silinternational/serverless-mfa-api-go"
mfa "github.com/sil-org/serverless-mfa-api-go"
)

// NewMux forms a new ServeMux router, see https://pkg.go.dev/net/http#ServeMux.
Expand Down
4 changes: 2 additions & 2 deletions server/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ import (

"github.com/kelseyhightower/envconfig"

mfa "github.com/silinternational/serverless-mfa-api-go"
"github.com/silinternational/serverless-mfa-api-go/router"
mfa "github.com/sil-org/serverless-mfa-api-go"
"github.com/sil-org/serverless-mfa-api-go/router"
)

var envConfig mfa.EnvConfig
Expand Down
2 changes: 1 addition & 1 deletion u2fserver/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import (
"net/http"
"os"

u2fsim "github.com/silinternational/serverless-mfa-api-go/u2fsimulator"
u2fsim "github.com/sil-org/serverless-mfa-api-go/u2fsimulator"
)

func main() {
Expand Down
2 changes: 1 addition & 1 deletion utils_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ import (
"github.com/aws/aws-sdk-go-v2/service/dynamodb"
"github.com/aws/aws-sdk-go-v2/service/dynamodb/types"

u2fsim "github.com/silinternational/serverless-mfa-api-go/u2fsimulator"
u2fsim "github.com/sil-org/serverless-mfa-api-go/u2fsimulator"
)

const localAppID = "http://localhost"
Expand Down
2 changes: 1 addition & 1 deletion webauthn_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ import (
"github.com/go-webauthn/webauthn/webauthn"
"github.com/stretchr/testify/require"

u2fsim "github.com/silinternational/serverless-mfa-api-go/u2fsimulator"
u2fsim "github.com/sil-org/serverless-mfa-api-go/u2fsimulator"
)

// These come from https://github.com/duo-labs/webauthn/blob/23776d77aa561cf1d5cf9f10a65daab336a1d399/protocol/assertion_test.go
Expand Down