openaustralia/morph

View on GitHub
app/models/contribution.rb

Summary

Maintainability
A
0 mins
Test Coverage
A
100%
# typed: strict
# frozen_string_literal: true

# Contribution of a user to the code a scraper
class Contribution < ApplicationRecord
  belongs_to :user
  belongs_to :scraper
end