fix: new dashboard test

pull/15736/head
Javier Aragón 4 years ago
parent 6910ec3b9f
commit 178ee3b61d

@ -102,11 +102,10 @@ module Carto::UserCommons
end
def unverified?
false
# (active? || locked?) &&
# email_verification_token.present? &&
# email_verification_sent_at.present? &&
# email_verification_sent_at < 1.hour.ago && !oauth_signin?
(active? || locked?) &&
email_verification_token.present? &&
email_verification_sent_at.present? &&
email_verification_sent_at < 1.hour.ago && !oauth_signin?
end
def remove_logo?

@ -3,7 +3,7 @@ require 'carto/configuration'
CartoDB::Application.configure do
# Settings specified here will take precedence over those in config/application.rb
# ActiveSupport::Dependencies.autoload_paths << File::join(Rails.root, 'lib')
ActiveSupport::Dependencies.autoload_paths << File::join(Rails.root, 'lib')
# ActiveSupport::Dependencies.autoload_paths << File::join( Rails.root, 'lib/central')
# The production environment is meant for finished, "live" apps.

@ -0,0 +1,8 @@
module.exports = {
process () {
return 'module.exports = {};';
},
getCacheKey () {
return 'svgTransform';
}
};
Loading…
Cancel
Save