hicknhack-software/redmine_hourglass

View on GitHub
lib/hourglass/redmine_patches/mirror_assets_patch.rb

Summary

Maintainability
A
0 mins
Test Coverage
# this file is not a patch for whole redmine but only an extension for the hourglass plugin instance
module Hourglass
  module RedminePatches
    module MirrorAssetsPatch

      def mirror_assets
        super
        Hourglass::Assets.compile if Rails.env.production?
      end
    end
  end
end