コード例 #1
0
ファイル: comment.go プロジェクト: Alexandur/ppopdr
func (cr *CommentController) UpdateMany(cx *goweb.Context) {
	cx.RespondWithStatus(http.StatusForbidden)
}
コード例 #2
0
ファイル: comment.go プロジェクト: Alexandur/ppopdr
func (cr *CommentController) Read(id string, cx *goweb.Context) {
	cx.RespondWithStatus(http.StatusForbidden)
}
コード例 #3
0
ファイル: category.go プロジェクト: Alexandur/ppopdr
func (cr *CategoryController) Update(id string, cx *goweb.Context) {
	cx.RespondWithStatus(http.StatusForbidden)
}
コード例 #4
0
ファイル: category.go プロジェクト: Alexandur/ppopdr
func (cr *CategoryController) DeleteMany(cx *goweb.Context) {
	cx.RespondWithStatus(http.StatusForbidden)
}
コード例 #5
0
ファイル: search.go プロジェクト: Alexandur/ppopdr
func (cr *SearchController) Delete(id string, cx *goweb.Context) {
	cx.RespondWithStatus(http.StatusForbidden)
}
コード例 #6
0
ファイル: search.go プロジェクト: Alexandur/ppopdr
func (cr *SearchController) Create(cx *goweb.Context) {
	cx.RespondWithStatus(http.StatusForbidden)
}