Git Product home page Git Product logo

Comments (4)

tute avatar tute commented on August 21, 2024

Hi! Try:

def users_with_badge_id(badge_id)
  sashes_with_badge = BadgesSash.where(badge_id: badge_id).pluck(:sash_id)
  User.where(sash_id: sashes_with_badge)
end
users_array = users_with_badge_id(1)

Thanks for your feedback.

from merit.

tute avatar tute commented on August 21, 2024

You could also add in config/initializers/merit.rb:

class Badge
  def users
    sashes_with_badge = BadgesSash.where(badge_id: id).pluck(:sash_id)
    User.where(sash_id: sashes_with_badge)
  end
end

And then use the syntax you propose:

users_array = Badge.find(1).users

The reason is not easy to do in merit is that any other resource (not only users) may have reputation information.

from merit.

tute avatar tute commented on August 21, 2024

I'll leave the issue open until I either document this in the wiki or README, or make it nicer (hook in has_merit model call to dynamically add the method is an option for instance).

Thanks for your feedback!

from merit.

Shpigford avatar Shpigford commented on August 21, 2024

Thanks so much!

from merit.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.