diff options
Diffstat (limited to 'internal/processing/app.go')
-rw-r--r-- | internal/processing/app.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/internal/processing/app.go b/internal/processing/app.go index 0b1a4046b..f2a938b22 100644 --- a/internal/processing/app.go +++ b/internal/processing/app.go @@ -29,7 +29,7 @@ import ( "github.com/superseriousbusiness/gotosocial/internal/oauth" ) -func (p *processor) AppCreate(ctx context.Context, authed *oauth.Auth, form *apimodel.ApplicationCreateRequest) (*apimodel.Application, gtserror.WithCode) { +func (p *Processor) AppCreate(ctx context.Context, authed *oauth.Auth, form *apimodel.ApplicationCreateRequest) (*apimodel.Application, gtserror.WithCode) { // set default 'read' for scopes if it's not set var scopes string if form.Scopes == "" { |