BUGFIX: seen recently key needs to be public so mock can easily reach in to it

This commit is contained in:
Sam 2014-02-18 16:09:24 +11:00
parent aa3096141a
commit 983c7567aa
1 changed files with 3 additions and 5 deletions

View File

@ -64,9 +64,7 @@ class GroupMessage
$redis.setex(sent_recently_key, @opts[:limit_once_per].try(:to_i) || 86_400, 1) unless @opts[:limit_once_per] == false
end
private
def sent_recently_key
"grpmsg:#{@group_name}:#{@message_type}:#{@opts[:user] ? @opts[:user].username : ''}"
end
def sent_recently_key
"grpmsg:#{@group_name}:#{@message_type}:#{@opts[:user] ? @opts[:user].username : ''}"
end
end