9 lines
163 B
Ruby
9 lines
163 B
Ruby
module ChangeLogHelper
|
|
|
|
def show_investment_log
|
|
@log = Budget::Investment::ChangeLog.find_by(id: params[:id])
|
|
render "admin/change_logs/show"
|
|
end
|
|
|
|
end
|