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

15 lines
296 B
Ruby
Raw Normal View History

module Datatables
class DatatablesTeam < ApplicationRecord
belongs_to :user
2017-10-27 15:35:39 +08:00
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