OpenProject is the leading open source project management software.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
openproject/app/helpers/highlighting_helper.rb

9 lines
276 B

module HighlightingHelper
def highlight_css_version_tag(max_updated_at = highlight_css_updated_at)
OpenProject::Cache::CacheKey.expand max_updated_at
end
def highlight_css_updated_at
ApplicationRecord.most_recently_changed Status, IssuePriority, Type
end
end