mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2025-02-07 23:44:55 +08:00
14 lines
296 B
Ruby
14 lines
296 B
Ruby
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
|