lighttroupe/luz-next

View on GitHub
engine/plugins/variable_inputs/divider.luz.rb

Summary

Maintainability
A
0 mins
Test Coverage
class VariableInputDivider < VariableInput
    title                "- - - - - - - -"
    description "Hey, nice divider!"

    categories :special

    hint "Useful as a spacer in your variable inputs list."

    def value
        false
    end
end