0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

【Ruby】【Trello】リストのカードを一括コピーする

Last updated at Posted at 2021-07-06

TrelloのWebUIからならテンプレートのカードをポチポチ作れるのですが、複数カードをコピーするのは面倒。
APIからだとテンプレートに関する処理は無さそうだったので、普通に create_card なAPIでコピー元のカードをリストから取得してコピー処理を回すようにした。

下記のように回せば順番も同じでコピーできるみたい。

動いているところ

Animation.gif

メモ

以下のライブラリを使いました。
https://github.com/jeremytregunna/ruby-trello

require 'trello'

# 認証情報を登録する
Trello.configure do |config|
  config.developer_public_key = ""
  config.member_token = ""
end

class Trello::Board
  def find_list_by_name(list_name)
    self.lists.find do |list|
      list_name == list.name
    end
  end
end

board_id = "xxxxxx" # 書き換えること
board = Trello::Board.find(board_id)

src_list = board.find_list_by_name("src")
dst_list = board.find_list_by_name("dst")

src_list.cards.each do |card|
  Trello::Card.create(source_card_id: card.id, list_id: dst_list.id)
end

参考

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?