Skip to content

Commit

Permalink
KAZOO-1864: update spec
Browse files Browse the repository at this point in the history
  • Loading branch information
James Aimonetti committed Jan 31, 2014
1 parent 24400d0 commit a3f5015
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions applications/ecallmgr/src/ecallmgr_call_events.erl
Expand Up @@ -453,11 +453,11 @@ create_event(Props) ->
create_event(EventName, Props) ->
create_event(EventName, get_application_name(Props), Props).

-spec create_event(ne_binary(), ne_binary(), wh_proplist()) -> wh_proplist().
-spec create_event(ne_binary(), api_binary(), wh_proplist()) -> wh_proplist().
create_event(EventName, ApplicationName, Props) ->
props:filter_undefined(
[{<<"Event-Name">>, EventName}
|specific_call_event_props(EventName, ApplicationName, Props)
[{<<"Event-Name">>, EventName}
|specific_call_event_props(EventName, ApplicationName, Props)
++ generic_call_event_props(Props)
]).

Expand Down Expand Up @@ -685,7 +685,7 @@ get_channel_moving(Props) ->
case is_channel_moving(Props) of
'false' -> 'undefined';
'true' -> 'true'
end.
end.

-spec get_call_id(wh_proplist()) -> api_binary().
get_call_id(Props) ->
Expand Down

0 comments on commit a3f5015

Please sign in to comment.