scinote-web/app/models/datatables/datatables_team.rb

13 lines
255 B
Ruby
Raw Normal View History

module Datatables
class DatatablesTeam < ApplicationRecord
belongs_to :user
private
# this isn't strictly necessary, but it will prevent
# rails from calling save, which would fail anyway.
def readonly?
true
end
end
end