diff --git a/apps/dgiot_dlink/src/handler/dgiot_dlink_handler.erl b/apps/dgiot_dlink/src/handler/dgiot_dlink_handler.erl index 655c6100..e036f308 100644 --- a/apps/dgiot_dlink/src/handler/dgiot_dlink_handler.erl +++ b/apps/dgiot_dlink/src/handler/dgiot_dlink_handler.erl @@ -205,7 +205,6 @@ do_request(get_thingecho, _Args, _Context, _Req) -> do_request(post_cookie, #{<<"UserSession">> := UserSession, <<"cookie">> := Cookie} = _Args, _Context, _Req) -> - io:format("~s ~p ~p ~n",[?FILE, ?LINE,Cookie]), case dgiot_parse_auth:put_cookie(UserSession, Cookie) of true -> {ok, #{<<"result">> => <<"success">>}}; @@ -214,5 +213,4 @@ do_request(post_cookie, #{<<"UserSession">> := UserSession, <<"cookie">> := Cook end; do_request(_OperationId, _Args, _Context, _Req) -> - io:format("~s ~p ~p ~n",[?FILE, ?LINE,_OperationId]), {error, <<"Not Allowed.">>}. diff --git a/apps/dgiot_http/src/dgiot_http_handler.erl b/apps/dgiot_http/src/dgiot_http_handler.erl index 0be24e29..2a333875 100644 --- a/apps/dgiot_http/src/dgiot_http_handler.erl +++ b/apps/dgiot_http/src/dgiot_http_handler.erl @@ -360,7 +360,7 @@ do_request(post_verify_code_action, #{<<"account">> := Account, <<"code">> := Co {400, unicode:characters_to_binary(<<"验证码未通过!"/utf8>>)} end; -%% System 概要: 验证手机号/邮箱是否通过 描述:验证手机号/邮箱是否通过 + %% OperationId:post_excel_id %% 请求:POST /iotapi/excel_id do_request(post_excel_id, #{<<"id">> := ChannelId, <<"data">> := Data} = _Args, Context, Req) -> diff --git a/apps/dgiot_parse/src/handler/dgiot_user_handler.erl b/apps/dgiot_parse/src/handler/dgiot_user_handler.erl index 4e553fd5..a2f933a3 100644 --- a/apps/dgiot_parse/src/handler/dgiot_user_handler.erl +++ b/apps/dgiot_parse/src/handler/dgiot_user_handler.erl @@ -227,7 +227,6 @@ do_request(get_roleuser, #{<<"where">> := Where} = Filter, #{<<"sessionToken">> undefined -> <<"{}">>; V -> - io:format("~s ~p V ~p ~n",[?FILE, ?LINE, V]), V end, dgiot_parse_auth:get_roleuser(Filter#{<<"where">> => jsx:decode(Where, [return_maps]), <<"userfilter">> => jsx:decode(UserFilter, [return_maps])}, SessionToken); diff --git a/data/loaded_plugins.tmpl b/data/loaded_plugins.tmpl index e1b34da9..8821fe2f 100644 --- a/data/loaded_plugins.tmpl +++ b/data/loaded_plugins.tmpl @@ -27,7 +27,3 @@ {dgiot_factory, {{enable_plugin_dgiot_factory}}}. {dgiot_printer, {{enable_plugin_dgiot_printer}}}. {dgiot_location, {{enable_plugin_dgiot_location}}}. -{dgiot_current, {{enable_plugin_dgiot_current}}}. -{dgiot_workshop, {{enable_plugin_dgiot_workshop}}}. -{dgiot_customer, {{enable_plugin_dgiot_customer}}}. -{dgiot_zhixin, {{enable_plugin_dgiot_zhixin}}}. diff --git a/rebar.config.erl b/rebar.config.erl index 2925a236..325c74fa 100644 --- a/rebar.config.erl +++ b/rebar.config.erl @@ -230,10 +230,6 @@ overlay_vars_rel(RelType) -> , {enable_plugin_dgiot_factory, true} , {enable_plugin_dgiot_printer, true} , {enable_plugin_dgiot_location, true} - , {enable_plugin_dgiot_current, true} - , {enable_plugin_dgiot_workshop, true} - , {enable_plugin_dgiot_customer, true} - , {enable_plugin_dgiot_zhixin, true} , {vm_args_file, VmArgs} ]. @@ -356,10 +352,6 @@ relx_plugin_apps_per_rel(cloud) -> , dgiot_factory , dgiot_printer , dgiot_location - , dgiot_workshop - , dgiot_current - , dgiot_customer - , dgiot_zhixin ]; relx_plugin_apps_per_rel(edge) -> [].