Exemplo n.º 1
0
func (cr *PublicationsApiController) UpdateMany(cx *goweb.Context) {
	if NotLoggedIn(cx) {
		cx.RespondWithStatus(UNAUTHORISED_HTTP_STATUS)
		return
	}
	cx.RespondWithOK()
}
Exemplo n.º 2
0
func (cr *PublicationsApiController) Read(id string, cx *goweb.Context) {
	cx.RespondWithOK()
}