Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
j_platform / app / helpers / j_platform / admin_helper.rb
Size: Mime:
module JPlatform
  module AdminHelper
    def client_status_rank(status)
      {"active" => 1, "suspended" => 5, "closed" => 9}[status] || 10
    end
  end
end