education/classroom

View on GitHub
app/models/null_github_team.rb

Summary

Maintainability
A
0 mins
Test Coverage
# frozen_string_literal: true

class NullGitHubTeam < NullGitHubResource
  def name
    "Deleted team"
  end

  def organization
    NullGitHubOrganization.new
  end

  def slug
    "ghost"
  end

  def html_url
    "https://github.com/orgs/ghost/teams/ghost"
  end

  def on_github?
    false
  end
end