2021-05-31 16:36:35 +01:00
|
|
|
package list
|
|
|
|
|
2021-06-13 17:42:28 +01:00
|
|
|
import (
|
|
|
|
"net/http"
|
|
|
|
|
|
|
|
"github.com/gin-gonic/gin"
|
2021-12-11 16:50:00 +00:00
|
|
|
"github.com/superseriousbusiness/gotosocial/internal/api"
|
2021-06-13 17:42:28 +01:00
|
|
|
)
|
2021-05-31 16:36:35 +01:00
|
|
|
|
|
|
|
// ListsGETHandler returns a list of lists created by/for the authed account
|
|
|
|
func (m *Module) ListsGETHandler(c *gin.Context) {
|
2021-12-11 16:50:00 +00:00
|
|
|
if _, err := api.NegotiateAccept(c, api.JSONAcceptHeaders...); err != nil {
|
|
|
|
c.JSON(http.StatusNotAcceptable, gin.H{"error": err.Error()})
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2021-06-13 17:42:28 +01:00
|
|
|
c.JSON(http.StatusOK, []string{})
|
2021-05-31 16:36:35 +01:00
|
|
|
}
|