Files
subtle-storm/app/helpers/tasks_helper.rb
T
2025-10-21 20:36:31 +03:00

12 lines
208 B
Ruby

# frozen_string_literal: true
module TasksHelper
def tasks_index_title
return "Tasks for #{current_project.name}" if current_project
# TODO: add conditions for filters, etc
'Tasks'
end
end