mirror of
				https://github.com/superseriousbusiness/gotosocial.git
				synced 2025-11-02 16:52:25 -06:00 
			
		
		
		
	* start centralizing negotiation logic for API * swagger document nodeinfo endpoint * go fmt * document negotiate function * use content negotiation * tidy up negotiation logic * negotiate content throughout client api * swagger * remove attachment on Content * add accept header to test requests
		
			
				
	
	
		
			18 lines
		
	
	
	
		
			445 B
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			18 lines
		
	
	
	
		
			445 B
		
	
	
	
		
			Go
		
	
	
	
	
	
package list
 | 
						|
 | 
						|
import (
 | 
						|
	"net/http"
 | 
						|
 | 
						|
	"github.com/gin-gonic/gin"
 | 
						|
	"github.com/superseriousbusiness/gotosocial/internal/api"
 | 
						|
)
 | 
						|
 | 
						|
// ListsGETHandler returns a list of lists created by/for the authed account
 | 
						|
func (m *Module) ListsGETHandler(c *gin.Context) {
 | 
						|
	if _, err := api.NegotiateAccept(c, api.JSONAcceptHeaders...); err != nil {
 | 
						|
		c.JSON(http.StatusNotAcceptable, gin.H{"error": err.Error()})
 | 
						|
		return
 | 
						|
	}
 | 
						|
 | 
						|
	c.JSON(http.StatusOK, []string{})
 | 
						|
}
 |