education/classroom

View on GitHub
app/models/null_github_repository.rb

Summary

Maintainability
A
0 mins
Test Coverage
# frozen_string_literal: true

class NullGitHubRepository < NullGitHubResource
  def name
    "Deleted repository"
  end

  def full_name
    "Deleted repository"
  end

  def html_url
    "#"
  end

  def node_id
    ""
  end

  def private
    nil
  end

  def owner
    ""
  end
end