mirror of
https://github.com/superseriousbusiness/gotosocial.git
synced 2025-12-24 16:06:14 -06:00
move tokenauth to apiutil
This commit is contained in:
parent
f734a94c1c
commit
e3857b90bb
186 changed files with 226 additions and 427 deletions
|
|
@ -25,7 +25,6 @@ import (
|
|||
apimodel "github.com/superseriousbusiness/gotosocial/internal/api/model"
|
||||
apiutil "github.com/superseriousbusiness/gotosocial/internal/api/util"
|
||||
"github.com/superseriousbusiness/gotosocial/internal/gtserror"
|
||||
"github.com/superseriousbusiness/gotosocial/internal/oauth"
|
||||
)
|
||||
|
||||
// ReportResolvePOSTHandler swagger:operation POST /api/v1/admin/reports/{id}/resolve adminReportResolve
|
||||
|
|
@ -84,7 +83,7 @@ import (
|
|||
// '500':
|
||||
// description: internal server error
|
||||
func (m *Module) ReportResolvePOSTHandler(c *gin.Context) {
|
||||
authed, err := oauth.Authed(c, true, true, true, true)
|
||||
authed, err := apiutil.TokenAuth(c, true, true, true, true)
|
||||
if err != nil {
|
||||
apiutil.ErrorHandler(c, gtserror.NewErrorUnauthorized(err, err.Error()), m.processor.InstanceGetV1)
|
||||
return
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue