Undev/redmine_tagging

View on GitHub
lib/tagging_plugin/context_helper.rb

Summary

Maintainability
A
0 mins
Test Coverage
module TaggingPlugin
  module ContextHelper
    class << self
      def context_for(project)
        "context_" + project.identifier.gsub('-', '_')
      end
    end
  end
end