favstarに対応
#-*- coding: utf-8 -*- | |
Plugin.create(:too_late) do | |
command(:too_late, | |
name: 'Too late', | |
condition: lambda{ |opt| true }, | |
visible: true, | |
role: :timeline) do |opt| | |
opt.messages.each { |m| | |
Service.primary.post(:message => "@#{m.user.idname} Too late.", :replyto => m) | |
} | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment