This question was prompted by this one:
- Using the ruby-trello gem, how can I determine whether a board is public or not?
In the Trello API, I see both boards and organizations offer a prefs
object with a permissionLevel
values.
However, it appears the gem only returns these prefs
values for the board:
> board = Trello::Member.find('me').boards.first
> board.prefs['permissionLevel']
=> "org"
> org = Trello::Member.find('me').organizations.first
> org.prefs['permissionLevel']
Traceback (most recent call last):
1: from (irb):11
NoMethodError (undefined method `prefs' for #<Trello::Organization:0x00007feb54459fd8>)
Is there any way to get the organization's permission level using the gem?