Using the ruby-trello gem, how can I determine whe

2019-09-04 19:20发布

This question was prompted by this one:

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?

标签: ruby trello
2条回答
迷人小祖宗
2楼-- · 2019-09-04 19:48

Here's a workaround using the gem:

> org = Trello::Member.find('me').organizations.first
> path = "/organizations/#{org.id}/prefs"
> response = org.client.get(path)
> org_prefs = JSON.parse(response.body)
=> {"permissionLevel"=>"public", "orgInviteRestrict"=>[], "externalMembersDisabled"=>false, "associatedDomain"=>nil, "googleAppsVersion"=>1, "boardVisibilityRestrict"=>{"private"=>"org", "org"=>"org", "public"=>"org"}}
> org_prefs['permissionLevel']
=> "public"
查看更多
迷人小祖宗
3楼-- · 2019-09-04 19:48

The gem you are using does not support prefs in organization objects, you can verify that here but the actual Trello API does have that field so you can either look for other gems that provide you that data or call the API directly without using the gem

查看更多
登录 后发表回答