mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2025-02-08 07:55:14 +08:00
- SystemNotifiction model with spec - UserSystemNotification model for many-many association
6 lines
137 B
Ruby
6 lines
137 B
Ruby
# frozen_string_literal: true
|
|
|
|
class UserSystemNotification < ApplicationRecord
|
|
belongs_to :user
|
|
belongs_to :system_notification
|
|
end
|