Module: Spyro::ActionViewExtension::ReleaseHelper

Included in:
ApplicationHelper
Defined in:
lib/spyro/helpers/action_view_extension.rb

Instance Method Summary collapse

Instance Method Details

#release_at(date, &block) ⇒ Object

Helper de l’enfer



606
607
608
609
610
# File 'lib/spyro/helpers/action_view_extension.rb', line 606

def release_at date, &block
  if date.past? or not Rails.env.production? or User.current_user.try(:has_role?, :intrateam)
    block.call
  end
end