delete_resource_h.erl 371 B

1234567891011121314151617
  1. %% This module accepts a multipart media type with parameters
  2. %% that do not include boundary.
  3. -module(delete_resource_h).
  4. -export([init/2]).
  5. -export([allowed_methods/2]).
  6. -export([delete_resource/2]).
  7. init(Req, Opts) ->
  8. {cowboy_rest, Req, Opts}.
  9. allowed_methods(Req, State) ->
  10. {[<<"DELETE">>], Req, State}.
  11. delete_resource(#{qs := <<"missing">>}, _) ->
  12. no_call.