Create job.rb

This commit is contained in:
Justin Edmund 2022-03-22 02:56:34 -07:00
parent ae99019f64
commit 698968dbfe

7
app/models/job.rb Normal file
View file

@ -0,0 +1,7 @@
class Job < ApplicationRecord
belongs_to :party
def display_resource(class)
class.name_en
end
end