left4me/rails/app/models/batch.rb
mwiegand abf55c9af1
wip
2022-11-27 18:41:02 +01:00

10 lines
190 B
Ruby

class Batch < ApplicationRecord
has_many :actions
has_many :menu_options
has_many :wheel_options
has_many :key_binds
def render
actions.collect(&:render).join("; ")
end
end