MontrealNewTech/website

View on GitHub
app/controllers/partnerships_controller.rb

Summary

Maintainability
A
0 mins
Test Coverage
# frozen_string_literal: true
class PartnershipsController < ApplicationController
  def index
    @partnerships = Partnership.with_relationship(:partnership)
    @community_partners = Partnership.with_relationship(:community_partner)
  end
end