AyuntamientoMadrid/participacion

View on GitHub
app/components/admin/tenants/new_component.rb

Summary

Maintainability
A
0 mins
Test Coverage
class Admin::Tenants::NewComponent < ApplicationComponent
  include Header
  attr_reader :tenant
  use_helpers :current_user

  def initialize(tenant)
    @tenant = tenant
  end

  def title
    t("admin.tenants.new.title")
  end
end