app/helpers/mailer_helper.rb

Summary

Maintainability
A
0 mins
Test Coverage

Use user.timezone.presence || User::DEFAULT_TIMEZONE instead of user.timezone.present? ? user.timezone : User::DEFAULT_TIMEZONE.
Open

    user.timezone.present? ? user.timezone : User::DEFAULT_TIMEZONE
Severity: Minor
Found in app/helpers/mailer_helper.rb by rubocop

This cop checks code that can be written more easily using Object#presence defined by Active Support.

Example:

# bad
a.present? ? a : nil

# bad
!a.present? ? nil : a

# bad
a.blank? ? nil : a

# bad
!a.blank? ? a : nil

# good
a.presence

Example:

# bad
a.present? ? a : b

# bad
!a.present? ? b : a

# bad
a.blank? ? b : a

# bad
!a.blank? ? a : b

# good
a.presence || b

There are no issues that match your filters.

Category
Status