left4me/rails/app/models/execution.rb
mwiegand 34b1a009f2
wip
2022-11-27 19:23:31 +01:00

8 lines
131 B
Ruby

class Execution < ApplicationRecord
belongs_to :command
has_many :actions
def execution
Execution.find(value)
end
end