Hopper Gee

Results 30 comments of Hopper Gee

We have an API to fetch all boards of an organization(workspace) ```ruby organization = Trello::Organization.find(org_id) boards = organization.boards ``` But it's using a legacy API `/organizations/#{id}/boards/all` which doesn't support query...

@qdegraeve I just bump to [v4.2.0](https://github.com/jeremytregunna/ruby-trello/releases/tag/v4.2.0). Now you can use query paramters: ```ruby organization = Trello::Organization.find(org_id) boards = organization.boards(filter: "open", fields: "id,name") ``` Please have a test and hope it...

Ahh, I haven't cover this circumstance maybe. I'll take a look later today.

Hi @snawar92 , could you help to create a demo app for me to try? I tired to add a simple default_scope in application record, it seems work.

Thanks for trying this gem. Could you put some code examples here for me to test?

I never use it this way. I would do it like this: ```ruby UserService.call( user_params: params.require(:user) ) ``` But yes, you're right. I should have provided a more reasonable error...

Sorry, I'm not quite get the point. It seems you met two issues: - Can't skip `set_current_tenant_account` with `skip_before_action`? - Have some problems with sidekiq? Please help to give more...

Hi @matedemorphy , thanks for those details. I did some tests. Here is what I found: - The `skip_before_action :set_current_tenant_account, unless: -> { storefront_action? }` is working. Maybe you can...

Currently, our full test cases haven't run against Ruby 3.2, Rails 7 and Sidekiq 7. I did a manual test, it seems work well. However, I will take some times...

Could you offer more details about the multiple columns which can help me to dig deeper?