This commit is contained in:
tsmethurst 2021-05-31 17:33:07 +02:00
commit 371f73da78
2 changed files with 2 additions and 2 deletions

View file

@ -41,7 +41,7 @@ const (
MaxIDKey = "max_id" MaxIDKey = "max_id"
// LimitKey is for specifying maximum number of notifications to return. // LimitKey is for specifying maximum number of notifications to return.
LimitKey = "limit" LimitKey = "limit"
// SinceIDKey // SinceIDKey is for specifying the minimum notification ID to return.
SinceIDKey = "since_id" SinceIDKey = "since_id"
) )

View file

@ -26,7 +26,7 @@ import (
"github.com/superseriousbusiness/gotosocial/internal/oauth" "github.com/superseriousbusiness/gotosocial/internal/oauth"
) )
// StatusContextGetHandler returns the context around the given status ID. // StatusContextGETHandler returns the context around the given status ID.
func (m *Module) StatusContextGETHandler(c *gin.Context) { func (m *Module) StatusContextGETHandler(c *gin.Context) {
l := m.log.WithFields(logrus.Fields{ l := m.log.WithFields(logrus.Fields{
"func": "StatusContextGETHandler", "func": "StatusContextGETHandler",