Commit e139cc9e33810203fe3ac298ad6649cdbcd79f87

Authored by Andrew Kumanyaev
1 parent f7b46fa5

Add emoji images to asset load path.

Showing 1 changed file with 3 additions and 1 deletions   Show diff stats
config/application.rb
@@ -62,7 +62,9 @@ module Gitlab @@ -62,7 +62,9 @@ module Gitlab
62 62
63 # Enable the asset pipeline 63 # Enable the asset pipeline
64 config.assets.enabled = true 64 config.assets.enabled = true
65 - 65 + config.assets.paths << Emoji.images_path
  66 + config.assets.precompile << "emoji/*.png"
  67 +
66 # Version of your assets, change this if you want to expire all your assets 68 # Version of your assets, change this if you want to expire all your assets
67 config.assets.version = '1.0' 69 config.assets.version = '1.0'
68 70