diff options
Diffstat (limited to 'internal/processing/report/create.go')
-rw-r--r-- | internal/processing/report/create.go | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/internal/processing/report/create.go b/internal/processing/report/create.go index a7e83b656..726d11666 100644 --- a/internal/processing/report/create.go +++ b/internal/processing/report/create.go @@ -33,7 +33,8 @@ import ( "github.com/superseriousbusiness/gotosocial/internal/uris" ) -func (p *processor) Create(ctx context.Context, account *gtsmodel.Account, form *apimodel.ReportCreateRequest) (*apimodel.Report, gtserror.WithCode) { +// Create creates one user report / flag, using the provided form parameters. +func (p *Processor) Create(ctx context.Context, account *gtsmodel.Account, form *apimodel.ReportCreateRequest) (*apimodel.Report, gtserror.WithCode) { if account.ID == form.AccountID { err := errors.New("cannot report your own account") return nil, gtserror.NewErrorBadRequest(err, err.Error()) |