Kevin Brown

Results 13 issues of Kevin Brown

I'm trying to monkey patch the `LdapConnect` class to return multiple attributes, given the param is an array, but not making headway. I've looked over issue 69, and [this tutorial](https://fairwaytech.com/2013/10/a-beginners-guide-to-querying-ldap-with-ruby-also-spaceballs/)...but...

What if I want to get a bunch of stuff back from my LDAP query? Currently, I have to do: ``` self.email = Devise::LDAP::Adapter.get_ldap_param(self.username,"mail").first.to_s self.first_name = Devise::LDAP::Adapter.get_ldap_param(self.username,"givenName").first.to_s self.last_name = Devise::LDAP::Adapter.get_ldap_param(self.username,"sn").first.to_s...

I have verk_web configured as a separate app in our umbrella project (not mounted in any phoenix apps). We have one proxy app that kindof plugs requests to the other...

Over several projects, I've modified this to allow users to be invited "to" things, such as organizations (membership), groups, or another join table. Would it be possible for us to...

Given the impact of this gem, a real changelog would be 💯.

Bunny version: 2.0.19 RabbitMQ version: 3.9.13 Ruby: 2.7 Based on ruby's openssl lib, it looks like you must use `min_ssl_version` to use 1.3: https://github.com/ruby/openssl/issues/473#issuecomment-964252959 Using the option `TLSv1_3`, ``` Bunny.new("amqps://",...

**Describe the bug** Given a standard one-to-many relationship `Posts` and `Comments`, where `comments` table has a `post_id` without a foreign-key constraint, the usage of `combine` will map _every relationship_ to...

bug
help wanted

I need to layer the turbo-ecto query with a base-query: ``` def list_paginated_reviews(params, user) do Review |> with_friends(user) |> preload(...) |> Turbo.Ecto.turbo(params) end def with_friends(review, user) do review |> join(:inner,...

I'm working with this architecture example & an existing project that is using elm/http 2.0...is there a straightforward path to upgrading that API? I've been attempting, but continually getting stuck...will...

Typespecs are too strict for nested template data: ``` @spec add_dynamic_template_data(t, String.t(), String.t() || map()) :: t ``` My usage: ``` |> Email.add_dynamic_template_data("item_title", item.title) |> Email.add_dynamic_template_data("list_of_things", [ %{"id" => item}...