adjust code to new repository

This commit is contained in:
T. R. Bernstein
2025-10-09 21:02:10 +02:00
committed by T. R. Bernstein
parent 0cf34c475b
commit 795cd8335f
335 changed files with 803 additions and 802 deletions

View File

@@ -22,19 +22,19 @@ import (
validation "github.com/go-ozzo/ozzo-validation/v4"
"github.com/golang-jwt/jwt/v5"
"github.com/pocketbase/dbx"
"github.com/pocketbase/pocketbase/apis"
"github.com/pocketbase/pocketbase/core"
"github.com/pocketbase/pocketbase/forms"
"github.com/pocketbase/pocketbase/mails"
"github.com/pocketbase/pocketbase/tools/filesystem"
"github.com/pocketbase/pocketbase/tools/hook"
"github.com/pocketbase/pocketbase/tools/inflector"
"github.com/pocketbase/pocketbase/tools/mailer"
"github.com/pocketbase/pocketbase/tools/router"
"github.com/pocketbase/pocketbase/tools/security"
"github.com/pocketbase/pocketbase/tools/store"
"github.com/pocketbase/pocketbase/tools/subscriptions"
"github.com/pocketbase/pocketbase/tools/types"
"github.com/tabshift-gh/pocketbase/apis"
"github.com/tabshift-gh/pocketbase/core"
"github.com/tabshift-gh/pocketbase/forms"
"github.com/tabshift-gh/pocketbase/mails"
"github.com/tabshift-gh/pocketbase/tools/filesystem"
"github.com/tabshift-gh/pocketbase/tools/hook"
"github.com/tabshift-gh/pocketbase/tools/inflector"
"github.com/tabshift-gh/pocketbase/tools/mailer"
"github.com/tabshift-gh/pocketbase/tools/router"
"github.com/tabshift-gh/pocketbase/tools/security"
"github.com/tabshift-gh/pocketbase/tools/store"
"github.com/tabshift-gh/pocketbase/tools/subscriptions"
"github.com/tabshift-gh/pocketbase/tools/types"
"github.com/spf13/cast"
"github.com/spf13/cobra"
)

View File

@@ -18,13 +18,13 @@ import (
"github.com/dop251/goja"
validation "github.com/go-ozzo/ozzo-validation/v4"
"github.com/pocketbase/pocketbase/apis"
"github.com/pocketbase/pocketbase/core"
"github.com/pocketbase/pocketbase/tests"
"github.com/pocketbase/pocketbase/tools/filesystem"
"github.com/pocketbase/pocketbase/tools/mailer"
"github.com/pocketbase/pocketbase/tools/router"
"github.com/pocketbase/pocketbase/tools/types"
"github.com/tabshift-gh/pocketbase/apis"
"github.com/tabshift-gh/pocketbase/core"
"github.com/tabshift-gh/pocketbase/tests"
"github.com/tabshift-gh/pocketbase/tools/filesystem"
"github.com/tabshift-gh/pocketbase/tools/mailer"
"github.com/tabshift-gh/pocketbase/tools/router"
"github.com/tabshift-gh/pocketbase/tools/types"
"github.com/spf13/cast"
)

View File

@@ -5,7 +5,7 @@ import (
"io"
"mime/multipart"
"github.com/pocketbase/pocketbase/tools/filesystem"
"github.com/tabshift-gh/pocketbase/tools/filesystem"
"github.com/spf13/cast"
)

View File

@@ -6,8 +6,8 @@ import (
"strings"
"testing"
"github.com/pocketbase/pocketbase/tools/filesystem"
"github.com/pocketbase/pocketbase/tools/list"
"github.com/tabshift-gh/pocketbase/tools/filesystem"
"github.com/tabshift-gh/pocketbase/tools/list"
)
func TestFormDataAppendAndSet(t *testing.T) {

View File

@@ -10,9 +10,9 @@ import (
"strings"
"time"
"github.com/pocketbase/pocketbase/core"
"github.com/pocketbase/pocketbase/plugins/jsvm"
"github.com/pocketbase/pocketbase/tools/list"
"github.com/tabshift-gh/pocketbase/core"
"github.com/tabshift-gh/pocketbase/plugins/jsvm"
"github.com/tabshift-gh/pocketbase/tools/list"
"github.com/pocketbase/tygoja"
)
@@ -1291,14 +1291,14 @@ func main() {
Packages: map[string][]string{
"github.com/go-ozzo/ozzo-validation/v4": {"Error"},
"github.com/pocketbase/dbx": {"*"},
"github.com/pocketbase/pocketbase/tools/security": {"*"},
"github.com/pocketbase/pocketbase/tools/filesystem": {"*"},
"github.com/pocketbase/pocketbase/tools/template": {"*"},
"github.com/pocketbase/pocketbase/mails": {"*"},
"github.com/pocketbase/pocketbase/apis": {"*"},
"github.com/pocketbase/pocketbase/core": {"*"},
"github.com/pocketbase/pocketbase/forms": {"*"},
"github.com/pocketbase/pocketbase": {"*"},
"github.com/tabshift-gh/pocketbase/tools/security": {"*"},
"github.com/tabshift-gh/pocketbase/tools/filesystem": {"*"},
"github.com/tabshift-gh/pocketbase/tools/template": {"*"},
"github.com/tabshift-gh/pocketbase/mails": {"*"},
"github.com/tabshift-gh/pocketbase/apis": {"*"},
"github.com/tabshift-gh/pocketbase/core": {"*"},
"github.com/tabshift-gh/pocketbase/forms": {"*"},
"github.com/tabshift-gh/pocketbase": {"*"},
"path/filepath": {"*"},
"os": {"*"},
"os/exec": {"Command"},

View File

@@ -31,9 +31,9 @@ import (
"github.com/dop251/goja_nodejs/require"
"github.com/fatih/color"
"github.com/fsnotify/fsnotify"
"github.com/pocketbase/pocketbase/core"
"github.com/pocketbase/pocketbase/plugins/jsvm/internal/types/generated"
"github.com/pocketbase/pocketbase/tools/template"
"github.com/tabshift-gh/pocketbase/core"
"github.com/tabshift-gh/pocketbase/plugins/jsvm/internal/types/generated"
"github.com/tabshift-gh/pocketbase/tools/template"
)
const typesFileName = "types.d.ts"

View File

@@ -4,7 +4,7 @@ import (
"reflect"
"testing"
"github.com/pocketbase/pocketbase/plugins/jsvm"
"github.com/tabshift-gh/pocketbase/plugins/jsvm"
)
func TestFieldMapper(t *testing.T) {