This commit is contained in:
Trevor Vallender 2023-11-21 12:14:34 +00:00
parent dbeaf3973d
commit 2384c4eb00
3 changed files with 9 additions and 0 deletions

View File

@ -0,0 +1 @@
<h1>FOOBAR</h1>

View File

@ -0,0 +1,5 @@
class AddJobToTimelog < ActiveRecord::Migration[6.1]
def change
add_reference :time_entries, :job, foreign_key: true
end
end

View File

@ -0,0 +1,3 @@
class JobsHookListener < Redmine::Hook::ViewListener
render_on :view_timelog_edit_form_bottom, partial: "timelogs/edit_form_bottom.html.erb"
end