10 lines
190 B
Ruby
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
|