yjp 2 ヶ月 前
コミット
d251854cc1
1 ファイル変更6 行追加0 行削除
  1. 6 0
      convenient/gwtools/entity_crud/entity_crud.go

+ 6 - 0
convenient/gwtools/entity_crud/entity_crud.go

@@ -383,6 +383,12 @@ func WithGlobalMiddlewares(middlewares ...gateway.Handler) GlobalOption {
 	}
 }
 
+func WithDisableCreate() CreateOption {
+	return func(options *CreateOptions) {
+		options.disable = true
+	}
+}
+
 func WithBeforeCreateBuilderCallback(callbacks RequestBuilderCallback) CreateOption {
 	return func(options *CreateOptions) {
 		options.beforeBuilderCallback = callbacks