Example #1
0
func (cr *CommentController) UpdateMany(cx *goweb.Context) {
	cx.RespondWithStatus(http.StatusForbidden)
}
Example #2
0
func (cr *CommentController) Read(id string, cx *goweb.Context) {
	cx.RespondWithStatus(http.StatusForbidden)
}
Example #3
0
func (cr *CategoryController) Update(id string, cx *goweb.Context) {
	cx.RespondWithStatus(http.StatusForbidden)
}
Example #4
0
func (cr *CategoryController) DeleteMany(cx *goweb.Context) {
	cx.RespondWithStatus(http.StatusForbidden)
}
Example #5
0
func (cr *SearchController) Delete(id string, cx *goweb.Context) {
	cx.RespondWithStatus(http.StatusForbidden)
}
Example #6
0
func (cr *SearchController) Create(cx *goweb.Context) {
	cx.RespondWithStatus(http.StatusForbidden)
}