Skip to content

Commit

Permalink
KAZOO-2647: keep the naming consistant in system_config
Browse files Browse the repository at this point in the history
  • Loading branch information
k-anderson committed Jun 20, 2014
1 parent c0af6a5 commit 1ba0d01
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion applications/notify/src/notify_fax_inbound_error.erl
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ is_notice_enabled(JObj) ->

-spec is_notice_enabled_default() -> boolean().
is_notice_enabled_default() ->
whapps_config:get_is_true(?MOD_CONFIG_CAT, <<"enabled">>, 'false').
whapps_config:get_is_true(?MOD_CONFIG_CAT, <<"default_enabled">>, 'false').

%%--------------------------------------------------------------------
%% @private
Expand Down
2 changes: 1 addition & 1 deletion applications/notify/src/notify_fax_outbound_error.erl
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ is_notice_enabled(JObj) ->

-spec is_notice_enabled_default() -> boolean().
is_notice_enabled_default() ->
whapps_config:get_is_true(?MOD_CONFIG_CAT, <<"enabled">>, 'false').
whapps_config:get_is_true(?MOD_CONFIG_CAT, <<"default_enabled">>, 'true').

%%--------------------------------------------------------------------
%% @private
Expand Down

0 comments on commit 1ba0d01

Please sign in to comment.