jeremytregunna / ruby-trello

Implementation of the Trello API for Ruby
MIT License
719 stars 237 forks source link

Can't update board description #288

Closed gabrielc63 closed 4 years ago

gabrielc63 commented 4 years ago

board.description = "test" board.update!

The update method is not working, the code I think should update desc attribute and not use description as a key:

    fields = {
        name: attributes[:name],
        description: attributes[:description],
        closed: attributes[:closed],
        starred: attributes[:starred],
        idOrganization: attributes[:organization_id]
      }