learningtapestry/lcms-engine

View on GitHub
app/models/lcms/engine/resource_standard.rb

Summary

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

module Lcms
  module Engine
    class ResourceStandard < ApplicationRecord
      belongs_to :resource
      belongs_to :standard
    end
  end
end