yjp 2 mesiacov pred
rodič
commit
ba98bbbc43

+ 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