This commit is contained in:
tobi 2025-05-05 12:01:11 +02:00
commit 052a84b972
11 changed files with 29 additions and 29 deletions

View file

@ -20,7 +20,7 @@ package timeline
import ( import (
"context" "context"
"github.com/superseriousbusiness/gotosocial/internal/timeline" "code.superseriousbusiness.org/gotosocial/internal/timeline"
) )
// SkipInsert returns a function that satisifes SkipInsertFunction. // SkipInsert returns a function that satisifes SkipInsertFunction.

View file

@ -23,12 +23,12 @@ import (
"errors" "errors"
"time" "time"
"code.superseriousbusiness.org/gotosocial/internal/db"
statusfilter "code.superseriousbusiness.org/gotosocial/internal/filter/status"
"code.superseriousbusiness.org/gotosocial/internal/gtserror"
"code.superseriousbusiness.org/gotosocial/internal/id"
"code.superseriousbusiness.org/gotosocial/internal/log"
"codeberg.org/gruf/go-kv" "codeberg.org/gruf/go-kv"
"github.com/superseriousbusiness/gotosocial/internal/db"
statusfilter "github.com/superseriousbusiness/gotosocial/internal/filter/status"
"github.com/superseriousbusiness/gotosocial/internal/gtserror"
"github.com/superseriousbusiness/gotosocial/internal/id"
"github.com/superseriousbusiness/gotosocial/internal/log"
) )
func (t *timeline) LastGot() time.Time { func (t *timeline) LastGot() time.Time {

View file

@ -22,10 +22,10 @@ import (
"sync" "sync"
"testing" "testing"
"code.superseriousbusiness.org/gotosocial/internal/gtscontext"
"code.superseriousbusiness.org/gotosocial/internal/id"
"code.superseriousbusiness.org/gotosocial/internal/timeline"
"github.com/stretchr/testify/suite" "github.com/stretchr/testify/suite"
"github.com/superseriousbusiness/gotosocial/internal/gtscontext"
"github.com/superseriousbusiness/gotosocial/internal/id"
"github.com/superseriousbusiness/gotosocial/internal/timeline"
) )
type GetTestSuite struct { type GetTestSuite struct {

View file

@ -22,10 +22,10 @@ import (
"context" "context"
"errors" "errors"
"code.superseriousbusiness.org/gotosocial/internal/db"
"code.superseriousbusiness.org/gotosocial/internal/gtserror"
"code.superseriousbusiness.org/gotosocial/internal/log"
"codeberg.org/gruf/go-kv" "codeberg.org/gruf/go-kv"
"github.com/superseriousbusiness/gotosocial/internal/db"
"github.com/superseriousbusiness/gotosocial/internal/gtserror"
"github.com/superseriousbusiness/gotosocial/internal/log"
) )
func (t *timeline) indexXBetweenIDs(ctx context.Context, amount int, behindID string, beforeID string, frontToBack bool) error { func (t *timeline) indexXBetweenIDs(ctx context.Context, amount int, behindID string, beforeID string, frontToBack bool) error {

View file

@ -22,8 +22,8 @@ import (
"testing" "testing"
"time" "time"
"code.superseriousbusiness.org/gotosocial/internal/gtsmodel"
"github.com/stretchr/testify/suite" "github.com/stretchr/testify/suite"
"github.com/superseriousbusiness/gotosocial/internal/gtsmodel"
) )
type IndexTestSuite struct { type IndexTestSuite struct {

View file

@ -21,7 +21,7 @@ import (
"container/list" "container/list"
"context" "context"
"github.com/superseriousbusiness/gotosocial/internal/gtserror" "code.superseriousbusiness.org/gotosocial/internal/gtserror"
) )
type indexedItems struct { type indexedItems struct {

View file

@ -22,8 +22,8 @@ import (
"sync" "sync"
"time" "time"
"github.com/superseriousbusiness/gotosocial/internal/gtserror" "code.superseriousbusiness.org/gotosocial/internal/gtserror"
"github.com/superseriousbusiness/gotosocial/internal/log" "code.superseriousbusiness.org/gotosocial/internal/log"
) )
const ( const (

View file

@ -22,11 +22,11 @@ import (
"context" "context"
"errors" "errors"
"code.superseriousbusiness.org/gotosocial/internal/db"
statusfilter "code.superseriousbusiness.org/gotosocial/internal/filter/status"
"code.superseriousbusiness.org/gotosocial/internal/gtserror"
"code.superseriousbusiness.org/gotosocial/internal/log"
"codeberg.org/gruf/go-kv" "codeberg.org/gruf/go-kv"
"github.com/superseriousbusiness/gotosocial/internal/db"
statusfilter "github.com/superseriousbusiness/gotosocial/internal/filter/status"
"github.com/superseriousbusiness/gotosocial/internal/gtserror"
"github.com/superseriousbusiness/gotosocial/internal/log"
) )
func (t *timeline) prepareXBetweenIDs(ctx context.Context, amount int, behindID string, beforeID string, frontToBack bool) error { func (t *timeline) prepareXBetweenIDs(ctx context.Context, amount int, behindID string, beforeID string, frontToBack bool) error {

View file

@ -21,8 +21,8 @@ import (
"container/list" "container/list"
"context" "context"
"code.superseriousbusiness.org/gotosocial/internal/log"
"codeberg.org/gruf/go-kv" "codeberg.org/gruf/go-kv"
"github.com/superseriousbusiness/gotosocial/internal/log"
) )
func (t *timeline) Remove(ctx context.Context, statusID string) (int, error) { func (t *timeline) Remove(ctx context.Context, statusID string) (int, error) {

View file

@ -21,12 +21,12 @@ import (
"context" "context"
"sort" "sort"
"code.superseriousbusiness.org/gotosocial/internal/filter/visibility"
"code.superseriousbusiness.org/gotosocial/internal/gtsmodel"
"code.superseriousbusiness.org/gotosocial/internal/state"
"code.superseriousbusiness.org/gotosocial/internal/typeutils"
"code.superseriousbusiness.org/gotosocial/testrig"
"github.com/stretchr/testify/suite" "github.com/stretchr/testify/suite"
"github.com/superseriousbusiness/gotosocial/internal/filter/visibility"
"github.com/superseriousbusiness/gotosocial/internal/gtsmodel"
"github.com/superseriousbusiness/gotosocial/internal/state"
"github.com/superseriousbusiness/gotosocial/internal/typeutils"
"github.com/superseriousbusiness/gotosocial/testrig"
) )
type TimelineStandardTestSuite struct { type TimelineStandardTestSuite struct {

View file

@ -23,9 +23,9 @@ import (
"github.com/stretchr/testify/suite" "github.com/stretchr/testify/suite"
apimodel "github.com/superseriousbusiness/gotosocial/internal/api/model" apimodel "code.superseriousbusiness.org/gotosocial/internal/api/model"
"github.com/superseriousbusiness/gotosocial/internal/gtsmodel" "code.superseriousbusiness.org/gotosocial/internal/gtsmodel"
"github.com/superseriousbusiness/gotosocial/internal/id" "code.superseriousbusiness.org/gotosocial/internal/id"
) )
type UnprepareTestSuite struct { type UnprepareTestSuite struct {