示例#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()
}