コード例 #1
0
ファイル: EventController.go プロジェクト: JRonak/CollegeFeed
func (this *EventController) Attending() {
	id, _ := strconv.Atoi(this.Ctx.Input.Param(":id"))
	t := models.Event{}
	t.Id = id
	t.AddAttend()
	this.Data["json"] = passjson
	this.ServeJson()
}