提交 eb928137 编写于 作者: R Riyad Preukschas

Move emoji auto-complete helper to ApplicationHelper

上级 682f62fd
......@@ -98,6 +98,12 @@ module ApplicationHelper
[projects, default_nav, project_nav].flatten.to_json
end
def emoji_autocomplete_source
# should be an array of strings
# so to_s can be called, because it is sufficient and to_json is too slow
Emoji::NAMES.to_s
end
def ldap_enable?
Devise.omniauth_providers.include?(:ldap)
end
......
......@@ -14,10 +14,4 @@ module NotesHelper
"vote downvote"
end
end
def emoji_for_completion
# should be an array of strings
# so to_s can be called, because it is sufficient and to_json is too slow
Emoji::NAMES
end
end
require 'spec_helper'
describe NotesHelper do
describe "#emoji_for_completion" do
it "should be an Array of Strings" do
emoji_for_completion.should be_a(Array)
emoji_for_completion.each { |emoji| emoji.should be_a(String) }
end
end
end
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册