lighttroupe/luz

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

Summary

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

    categories :special

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

    def value
        false
    end
end