예제 #1
0
파일: controller.go 프로젝트: mir/maratyv
func (cr *PublicationsApiController) UpdateMany(cx *goweb.Context) {
	if NotLoggedIn(cx) {
		cx.RespondWithStatus(UNAUTHORISED_HTTP_STATUS)
		return
	}
	cx.RespondWithOK()
}
예제 #2
0
파일: controller.go 프로젝트: mir/maratyv
func (cr *PublicationsApiController) Read(id string, cx *goweb.Context) {
	cx.RespondWithOK()
}