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

17 lines
337 B
Ruby

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