AlchemyCMS/alchemy_cms

View on GitHub
app/models/alchemy/ingredients/select.rb

Summary

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

module Alchemy
  module Ingredients
    # A text value from a select box
    #
    class Select < Alchemy::Ingredient
      allow_settings %i[display_inline select_values]
    end
  end
end