Skip to content

Instantly share code, notes, and snippets.

@moguno
Last active November 5, 2016 04:31
Show Gist options
  • Save moguno/e893d95aa0508f603edaf63282bdece9 to your computer and use it in GitHub Desktop.
Save moguno/e893d95aa0508f603edaf63282bdece9 to your computer and use it in GitHub Desktop.
選択したメッセージ作者をフョローするmikutterコード片
Plugin.create(:"mikutter-command-follow") {
command(:follow,
:name => _("フョローする"),
:condition => lambda { |opt| Plugin::Command[:HasMessage] },
:visible => true,
:role => :timeline) { |opt|
opt.messages.each { |msg|
if msg && msg.user
Service.primary.follow(:user_id => msg.user.id)
end
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment