diff options
author | Grzegorz Bizon <grzesiek.bizon@gmail.com> | 2016-07-19 15:06:39 +0200 |
---|---|---|
committer | Grzegorz Bizon <grzesiek.bizon@gmail.com> | 2016-07-19 15:12:15 +0200 |
commit | b6d3eadfe23997770ca260460c0e22fed6859d45 (patch) | |
tree | 01252713b0e40128526e0117c2186e62b3badcae /lib | |
parent | 3d2b6a3d7b51b8caf5a9133b6c0f0a6da3ab6d9d (diff) | |
download | gitlab-ce-b6d3eadfe23997770ca260460c0e22fed6859d45.tar.gz |
Fix method visiblity in emoji filter class
Diffstat (limited to 'lib')
-rw-r--r-- | lib/banzai/filter/emoji_filter.rb | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/lib/banzai/filter/emoji_filter.rb b/lib/banzai/filter/emoji_filter.rb index ae7d31cf191..2492b5213ac 100644 --- a/lib/banzai/filter/emoji_filter.rb +++ b/lib/banzai/filter/emoji_filter.rb @@ -38,6 +38,11 @@ module Banzai end end + # Build a regexp that matches all valid :emoji: names. + def self.emoji_pattern + @emoji_pattern ||= /:(#{Gitlab::Emoji.emojis_names.map { |name| Regexp.escape(name) }.join('|')}):/ + end + private def emoji_url(name) @@ -59,11 +64,6 @@ module Banzai ActionController::Base.helpers.url_to_image(image) end - # Build a regexp that matches all valid :emoji: names. - def self.emoji_pattern - @emoji_pattern ||= /:(#{Gitlab::Emoji.emojis_names.map { |name| Regexp.escape(name) }.join('|')}):/ - end - def emoji_pattern self.class.emoji_pattern end |