education/classroom

View on GitHub
app/models/github_org_hook.rb

Summary

Maintainability
A
0 mins
Test Coverage
# frozen_string_literal: true

class GitHubOrgHook < GitHubOrgResource
  def active?
    active
  end

  private

  def github_attributes
    %w[active name created_at updated_at]
  end
end