scinote-web/app/helpers/protocols_helper.rb
2023-03-03 14:32:08 +01:00

8 lines
171 B
Ruby

# frozen_string_literal: true
module ProtocolsHelper
def templates_view_mode_archived?(type: nil, protocol: nil)
type == :archived || protocol&.archived?
end
end