プロジェクト

全般

プロフィール

機能 #1140 » 0001-update_profile_spell.patch

Shibafu Midorino, 2017-12-26 18:23

差分を表示:

core/plugin/twitter/twitter.rb
216 216
    twitter.search(**options)
217 217
  end
218 218

  
219
  defspell(:update_profile_name, :twitter) do |twitter, name:|
220
    (twitter/'account/update_profile').json(name: name)
221
  end
222

  
223
  defspell(:update_profile_location, :twitter) do |twitter, location:|
224
    (twitter/'account/update_profile').json(location: location)
225
  end
226

  
227
  defspell(:update_profile_url, :twitter) do |twitter, url:|
228
    (twitter/'account/update_profile').json(url: url)
229
  end
230

  
231
  defspell(:update_profile_biography, :twitter) do |twitter, biography:|
232
    (twitter/'account/update_profile').json(description: biography)
233
  end
234

  
235
  defspell(:update_profile_icon, :twitter) do |twitter, icon:|
236
    (twitter/'account/update_profile_image').json(image: icon)
237
  end
238

  
219 239
  # リツイートを削除した時、ちゃんとリツイートリストからそれを削除する
220 240
  on_destroyed do |messages|
221 241
    messages.each{ |message|
(1-1/2)