From cebdccf8c4be3e05be3e885b0da27f2d432ee6d5 Mon Sep 17 00:00:00 2001 From: Victor Costa Date: Wed, 5 Aug 2015 15:04:03 -0300 Subject: [PATCH] api: fix logger filter --- Gemfile | 2 +- config/application.rb | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Gemfile b/Gemfile index b2018bd..4753856 100644 --- a/Gemfile +++ b/Gemfile @@ -25,7 +25,7 @@ gem 'grape', '~> 0.12' gem 'grape-entity' #FIXME Get the Grape Loggin from master yo solve this issue https://github.com/intridea/grape/issues/1059 #We have to remove this commit referenve code when update the next release of grape_logging. Actualy we are using (1.1.2) -gem 'grape_logging', :git => 'https://github.com/aceunreal/grape_logging.git', :ref => '100091b' +gem 'grape_logging', :git => 'https://github.com/aceunreal/grape_logging.git', :ref => 'f1755ae' gem 'rack-cors' gem 'rack-contrib' diff --git a/config/application.rb b/config/application.rb index 3dfc87b..67eeee7 100644 --- a/config/application.rb +++ b/config/application.rb @@ -73,7 +73,7 @@ module Noosfero config.encoding = "utf-8" # Configure sensitive parameters which will be filtered from the log file. - config.filter_parameters += [:password] + config.filter_parameters += [:password, :password_confirmation] # Enable escaping HTML in JSON. ActiveSupport::JSON::Encoding.escape_html_entities_in_json = true -- libgit2 0.21.2