sanger/limber

View on GitHub
app/models/concerns/presenters/statemachine/does_not_allow_library_passing.rb

Summary

Maintainability
A
0 mins
Test Coverage
A
100%
# frozen_string_literal: true

# The state never presents the library pass button
module Presenters::Statemachine
  module DoesNotAllowLibraryPassing # rubocop:todo Style/Documentation
    extend ActiveSupport::Concern
    included do
      def control_library_passing
        false
      end

      def control_suggested_library_passing
        false
      end
    end
  end
end