summaryrefslogtreecommitdiff
path: root/internal/processing/report
diff options
context:
space:
mode:
Diffstat (limited to 'internal/processing/report')
-rw-r--r--internal/processing/report/create.go16
-rw-r--r--internal/processing/report/get.go12
-rw-r--r--internal/processing/report/report.go4
3 files changed, 16 insertions, 16 deletions
diff --git a/internal/processing/report/create.go b/internal/processing/report/create.go
index dd31a8798..734670e17 100644
--- a/internal/processing/report/create.go
+++ b/internal/processing/report/create.go
@@ -22,14 +22,14 @@ import (
"errors"
"fmt"
- "github.com/superseriousbusiness/gotosocial/internal/ap"
- apimodel "github.com/superseriousbusiness/gotosocial/internal/api/model"
- "github.com/superseriousbusiness/gotosocial/internal/db"
- "github.com/superseriousbusiness/gotosocial/internal/gtserror"
- "github.com/superseriousbusiness/gotosocial/internal/gtsmodel"
- "github.com/superseriousbusiness/gotosocial/internal/id"
- "github.com/superseriousbusiness/gotosocial/internal/messages"
- "github.com/superseriousbusiness/gotosocial/internal/uris"
+ "code.superseriousbusiness.org/gotosocial/internal/ap"
+ apimodel "code.superseriousbusiness.org/gotosocial/internal/api/model"
+ "code.superseriousbusiness.org/gotosocial/internal/db"
+ "code.superseriousbusiness.org/gotosocial/internal/gtserror"
+ "code.superseriousbusiness.org/gotosocial/internal/gtsmodel"
+ "code.superseriousbusiness.org/gotosocial/internal/id"
+ "code.superseriousbusiness.org/gotosocial/internal/messages"
+ "code.superseriousbusiness.org/gotosocial/internal/uris"
)
// Create creates one user report / flag, using the provided form parameters.
diff --git a/internal/processing/report/get.go b/internal/processing/report/get.go
index 2e3c1b2dc..136f09470 100644
--- a/internal/processing/report/get.go
+++ b/internal/processing/report/get.go
@@ -24,12 +24,12 @@ import (
"net/url"
"strconv"
- apimodel "github.com/superseriousbusiness/gotosocial/internal/api/model"
- apiutil "github.com/superseriousbusiness/gotosocial/internal/api/util"
- "github.com/superseriousbusiness/gotosocial/internal/db"
- "github.com/superseriousbusiness/gotosocial/internal/gtserror"
- "github.com/superseriousbusiness/gotosocial/internal/gtsmodel"
- "github.com/superseriousbusiness/gotosocial/internal/paging"
+ apimodel "code.superseriousbusiness.org/gotosocial/internal/api/model"
+ apiutil "code.superseriousbusiness.org/gotosocial/internal/api/util"
+ "code.superseriousbusiness.org/gotosocial/internal/db"
+ "code.superseriousbusiness.org/gotosocial/internal/gtserror"
+ "code.superseriousbusiness.org/gotosocial/internal/gtsmodel"
+ "code.superseriousbusiness.org/gotosocial/internal/paging"
)
// Get returns the user view of a moderation report, with the given id.
diff --git a/internal/processing/report/report.go b/internal/processing/report/report.go
index c871172bb..cdc2dc3e0 100644
--- a/internal/processing/report/report.go
+++ b/internal/processing/report/report.go
@@ -18,8 +18,8 @@
package report
import (
- "github.com/superseriousbusiness/gotosocial/internal/state"
- "github.com/superseriousbusiness/gotosocial/internal/typeutils"
+ "code.superseriousbusiness.org/gotosocial/internal/state"
+ "code.superseriousbusiness.org/gotosocial/internal/typeutils"
)
type Processor struct {