gitcoinco/code_fund_ads

View on GitHub
app/controllers/publisher_dashboards_controller.rb

Summary

Maintainability
A
0 mins
Test Coverage
class PublisherDashboardsController < ApplicationController
  before_action :authenticate_user!

  def show
    @properties = current_user.properties.active.order("status, name")
  end
end