testmycode/tmc-server

View on GitHub
app/models/course_notification.rb

Summary

Maintainability
A
0 mins
Test Coverage
# frozen_string_literal: true

class CourseNotification < ApplicationRecord
  attr_accessor :topic, :message, :user, :course
  belongs_to :course
  belongs_to :user
end